Skip to content

Releases: mmarcon/jhere

jHERE 1.0.0 beta 3

22 Nov 09:23
Compare
Choose a tag to compare
jHERE 1.0.0 beta 3 Pre-release
Pre-release

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

20 Nov 15:39
Compare
Choose a tag to compare
jHERE 1.0.0 beta 2 Pre-release
Pre-release

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

10 Oct 21:38
Compare
Choose a tag to compare
jHERE 1.0.0 beta Pre-release
Pre-release

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.