Display maps and map fields using Leaflet.
npm install manhattan-mapsnpm install manhattan-maps --save-dev
``html
data-mh-map-view
data-mh-map-view--dragging
data-mh-map-view--scroll-wheel-zoom
data-mh-map-view--home="fit-markers"
data-mh-map-view--group-padding="100,100"
data-mh-map-view--popup="content"
class="map-view"
>
`JavaScript
import * as $ from 'manhattan-essentials'
import {mapView} from 'manhattan-maps'const m = new mapView.MapView($.one('[data-mh-map-view]'))
m.init()
``