You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 4, 2019. It is now read-only.
Is it possible to show the position of single records on the map? I went through all demos, but haven't found such an example. Leaflet should be capable of this.
The text was updated successfully, but these errors were encountered:
cschwantes
changed the title
Show exact coordinates with a marker in map
Show exact coordinates of records with a marker on map
Dec 14, 2016
You can show an area / polygon for each record with current Keshif version. I have a public example using counties as records. The record display can show a map which shows each county.
Currently, you need to load the GeoJSON yourself, and describe how each record (say, county) should be represented (currently, Keshif only accepts geojson path objects).
The code of interest is in the recordDisplay specification :: geo: 'geo',
And, on loading the data, JSON file is parsed and then a geo property is added to each county.
The code is further up in the code for that, and the statement is: record.data.geo = feature;
This is not a stable API. It is flexible, so will require some coding.
If you have more questions or new feature requests, feel free to send an update on this thread.
Instead of representing areas such as counties or countries, I would like to represent individual sets of coordinates with a marker. Each record would have it's exact coordinates (such as it's exact address), which should be shown on a map.
You can see an example of what I'm referring to as marker here:
Chris
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Is it possible to show the position of single records on the map? I went through all demos, but haven't found such an example. Leaflet should be capable of this.
The text was updated successfully, but these errors were encountered: