Socket
Socket
Sign inDemoInstall

leaflet-solr-heatmap

Package Overview
Dependencies
4
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    leaflet-solr-heatmap

A Leaflet plugin that visualizes heatmap facets from Solr 5.x


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Leaflet-Solr-Heatmap

A Leaflet plugin that visualizes heatmap facets from Solr 5.x

Using with Leaflet

// Create a SolrHeatmap layer and add it to the map
var solr = L.solrHeatmap('http://127.0.0.1:8983/solr/gettingstarted', {
  // Solr field with geospatial data (should be type Spatial Recursive Prefix Tree)
  field: 'loc_srpt',

  // Set type of visualization. Allowed types: 'geojsonGrid', 'clusters'
  // Note: 'clusters' requires LeafletMarkerClusterer
  type: 'geojsonGrid'
}).addTo(map);
OptionTypeDefaultDescription
fieldStringnullRequired. Solr field with geospatial data (should be type Spatial Recursive Prefix Tree)
typeString'geojsonGrid'Type of visualization. Accepts geojsonGrid, clusters and heatmap
solrRequestHandlerString'select'Request handler for Solr
colorsArray['#f1eef6', '#d7b5d8', '#df65b0', '#dd1c77', '#980043']Colors for heatmap. Array can be of any length.
maxSampleSizeNumberNumber.MAX_SAFE_INTEGERFor improved performance, run Jenks classification on only a sample of Solr counts. Default value turns off sampling. Typical value is 400.
queryAdapterStringdefaultA query adapter used to connect to a Solr interface. Useful for querying applications that may proxy through Solr.
queryRadiusNumber40Radius (in pixels) used for querying nearby data

Events

L.SolrHeatmap layers fire all of the typical events from Leaflet. Additional events include:

EventDataDescription
dataAddedObjectfires when data is added to the map. Returns an object which is the JSON response from the Solr server

Running locally

Install Dependencies

# Install JavaScript depencencies
$ npm install

# Install local solr
$ gem install solr_wrapper

Run Solr

$ solr_wrapper

Index fixture data

$ npm run index

Start local server

npm run start

View the example at http://127.0.0.1:8000/example/

Adapting to different API interfaces

Leaflet Solr Heatmap uses an abstracted query adapater, that can be used to query API's besides the default Solr API. This has been used in Blacklight Heatmaps. Adapters can be added to the L.SolrHeatmapQueryAdapters object and then selected using the L.solrHeatmap options instantiation. Query adapters need to implment the following methods:

Method | Returns | Purpose ajaxOptions | Object | Merged options object that defines $.ajax url and settings. responseFormatter | Object | A way to access a custom API resposne formatter. Should return an Object that behaves as the Solr Facet Heatmap JSON response (or just passes it through).

FAQs

Last updated on 10 Aug 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc