Socket
Socket
Sign inDemoInstall

ember-leaflet-marker-cluster

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-leaflet-marker-cluster

Addon for Ember-Leaflet which adds marker clusters


Version published
Weekly downloads
139
decreased by-17.75%
Maintainers
2
Weekly downloads
 
Created
Source

ember-leaflet-marker-cluster

Provides Beautiful Animated Marker Clustering functionality for Ember-Leaflet, an Ember Addon for Leaflet interactive maps.

This plugin is based on a JS library Leaflet.markercluster and basically wraps it into ember component for usage in HTMLbars templates.

Installation

ember install ember-leaflet-marker-cluster

Using the plugin

Please be advised that for some particular reason Leaflet Marker Cluster breaks if the component loads with some markers inside the marker cluster in place without @maxZoom argument provided to <LeafletMap> like so: <LeafletMap @maxZoom={{25}}>.

<LeafletMap @lat={{lat}} @lng={{lng}} @zoom={{zoom}} as |layers|>

  <layers.tile @url="http://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png"/>

  <layers.marker-cluster as |cluster|>
    {{#each markers as |m|}}
      <cluster.marker @location={{m.location}} as |marker|>
        <marker.popup>
          <h3>{{m.title}}</h3>
          {{m.description}}
        </marker.popup>
      </cluster.marker>
    {{/each}}
  </layers.marker-cluster>

</LeafletMap>

Running

Running Tests

  • npm test (Runs ember try:testall to test your addon against multiple Ember versions)
  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit http://www.ember-cli.com/.

Compatibility

  • Ember.js v3.16 or above
  • Ember CLI v2.13 or above
  • Node.js v10 or above

License

This project is licensed under the MIT License.

Keywords

FAQs

Package last updated on 22 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc