Skip to content

Commit

Permalink
Updated jsl.js url and version
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarcon committed Nov 1, 2013
1 parent f1c1da9 commit 351189e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/examples/example.basic.html
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,9 @@
}}).jHERE('marker', [52.49, 13.39], {text: '❤', textColor: '#fff', fill: '#004C9A',
click: function(e){
$(this).jHERE('bubble', [52.49, 13.39], {content: JSON.stringify(e.geo), closable: false});
}}).jHERE('marker', {latitude: 52.50170519640143, longitude: 13.433858032226539}, {text: 'Ï', textColor: '#fff', fill: '#004C9A',
click: function(e){
$(this).jHERE('bubble', e.geo, {content: JSON.stringify(e.geo), closable: false});
}}).jHERE('heatmap', heatMapData, 'value').jHERE('marker', {latitude: 52.5113748680947, longitude: 13.401589126700173}, {icon: 'resources/balloon.png', anchor: {x: 24, y: 48}});
$('#map').jHERE('kml', 'resources/berlin.kml', true).on('mapclick', function(e){
console.log('clicked on: ', e.geo);
Expand Down
2 changes: 1 addition & 1 deletion src/jhere.js
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
};
head = doc.getElementsByTagName('head')[0];
jsla = doc.createElement('script');
jsla.src = 'http://api.maps.nokia.com/2.2.4/jsl.js';
jsla.src = 'http://js.api.here.com/se/2.5.3/jsl.js';
jsla.type = 'text/javascript';
jsla.charset = 'utf-8';
jsla.onreadystatechange = function(){
Expand Down

0 comments on commit 351189e

Please sign in to comment.