Releases: mmarcon/jhere
Releases · mmarcon/jhere
jHERE 1.0.0 beta 3
In this release I added the possibility of toggling map behavior (zoom with mouse wheel and pan by dragging):
var map = jHERE(document.querySelector('#map'), {
app_id: 'your_app_id',
app_code: 'your_app_code'
zoom: 14,
center: {lat: 52.5, lng: 13.3,
enable: ['zoombar', 'scalebar', 'settings', 'behavior']
}});
jHERE 1.0.0 beta 2
In this release I reintroduced map controls (enable
option):
var map = jHERE(document.querySelector('#map'), {
app_id: 'your_app_id',
app_code: 'your_app_code'
zoom: 14,
center: {lat: 52.5, lng: 13.3,
enable: ['zoombar', 'scalebar', 'settings']
}});
jHERE 1.0.0 beta
This is a beta release
The main features are there and seem to work nicely, but at this stage jHERE is not super stable. Lots of features that aren't part of the core are not there yet.
Missing features
- Heatmaps
- KML support
- Extensions have not been ported yet
- jQuery plugin wrapper is currently missing and considered low priority
Known issues
- It's possible to add listeners for map events, but not to remove the listeners
Documentation
Documentation is available in the wiki.