Leaflet is a modern, lightweight open-source JavaScript library for mobile-friendly interactive maps.

learn more… | top users | synonyms

1
vote
1answer
24 views

Leaflet fixed map double click feature not working properly in Firefox after scrolling

The problem happens in Firefox and IE, Chrome and Safari work great. I have a map with Leaflet in fixed position and when I double click to zoom on the map and I am scrolled up it zooms without ...
0
votes
0answers
14 views

How can I show popups from different layers with all of the visible?

I'm making a map with 3 different layers, one for each year, so frequently the popups are in the exact same place. I'm using a marker cluster so when zooming the map you can see the individual marker ...
0
votes
0answers
14 views

How can I reset style on a polygon?

I can not get the style to reset on a leaflet polygon. The setStyle works just fine on hover, however resetting it when I stop hovering is not working. I'm getting Uncaught TypeError: Object [object ...
0
votes
1answer
16 views

Leaflet Draw Plugin: How to get diagonal latlng of a rectangle

I want to get lat long of rectangle in format "[51.49, -0.1], [51.48, -0.06]" means only diagonal lat long. I am using getLatLngs(). It gives all four co-ordinates of rectangle. if (type === ...
0
votes
1answer
30 views

Leaflet Draw Plugin:: how to find latlng of polyline and save them to Database

I have fetched latlng of polyline using function getLatlngs(). Latlng are saved in database in format like "LatLng(-37.76949, 175.26481),LatLng(-37.77211, 175.26884),LatLng(-37.77323, 175.26532)". ...
0
votes
0answers
12 views

Marker pin disappears in webview Android?

I'm creating a map app. I'm using leafletJS inside a webview in android. The functionally is great, except from the blue marker which should be om my map. In a PhoneGap application my marker shows, as ...
-1
votes
1answer
24 views

Leaflet draw plugin:: how to edit only one geofence. i am trying to edit initialize function in Edittoolbar.js

initialize: function (options) { L.Toolbar.prototype.initialize.call(this, options); this._selectedFeatureCount = 0; },
0
votes
0answers
10 views

How do I add elevation data to a GeoJSON line from a GPX file? [migrated]

I understand that elevation can be added as an optional third value in Coordinates (lat, long, elev) in a geojson file, but I can't find a way to actually do that from a gpx file. I've used ogr2ogr to ...
0
votes
0answers
14 views

How do I combine the geoJson of several countries to create a region

I have the geoJson for every country in the world, but I need to combine several countries to create a region to display on a map. What is the best way to do this?
0
votes
2answers
42 views

Using leaflet with Meteor

Hi I'm making a simple app to show leaflet map with meteor. This simple example is not working testApp.html : <head> <title>testApp</title> </head> <body> ...
0
votes
1answer
31 views

looking for examples of SVG graphics in Leaflet popups

I am building a map with Leaflet and D3. I am bringing in the points as a Leaflet layer. I would like to bind popups for these points that include SVG graphics in the popup. Has anyone seen examples ...
0
votes
0answers
16 views

Leaflet stop dragging event, start on another one.

Good day, Currently I am working on a project in Leaflet.js a mapping solution. This works great. There is an 'marker' object which you can place on the map and enable dragging for. So you can drag ...
0
votes
0answers
40 views

How to add a non-referenced image as overlay in leaflet

I have a Leaflet map, with tileLayer and markers. I would like to add an image overlay to add some effects and styling to the tiles. L.imageOverlay is nice, but it requires bounds, whereas I would ...
0
votes
1answer
38 views

leafletjs setMaxBounds wont let zoom out to see whole world

I am using leaflet js to show a world map using cloudmade tiles. When I setMaxBounds to the map the bounds work great except to north. That is, however, not my biggest concern. My concern is, as I use ...
1
vote
1answer
67 views

Leaflet and jQuery mobile won't cooperate

everyone. I'm working on a mobile app for a nature reserve (the old map is currently built with flash), and I'm having trouble with jQuery mobile and leaflet. As it stands, I can only get either the ...
0
votes
2answers
39 views

how to make leaflet map height variable

In my Application I was making div of map as <div id="map" style="height: 610px; width:100%"></div> but to make my map responsive I want to make height also 100%, if I make height: 100% ...
0
votes
2answers
46 views

LeafletJS: How to remove the zoom control

I'm trying to remove the zoom controls (+/-) on a LeafletJS map. I'm using the MapBox.js version of Leaflet but most of the operations are the same as Leaflet. I implement my map like this: var map ...
-1
votes
0answers
20 views

Importing svg file to Leaflet map

I was just wondering,...it is possible to import an external svg file and add to map and place to map-overlay div so that I would zoom and pan accordingly to it's drawn latitude and longitude
0
votes
0answers
15 views

Discover layer's toggle state in leaflet

I'm using L.Control.Layers to hold multiple GeoJSON layers as base layers (radio button). On mapmove the GeoJSON layer objects are requested from the server, checked if they already exist in the ...
0
votes
1answer
22 views

Showing and hiding groups of markers with Mapbox/LeafletJS

I'm using MapboxJS to build a map. I currently give it a geoJson object of all my markers, which show up with no problem. As each point has a category, I'd like to add a control layer with ...
0
votes
0answers
21 views

JS Leaflet: Passing touch/drag events to underlying marker

I am using Leaflet with the Label plugin (https://github.com/Leaflet/Leaflet.label). It works nice expect for the fact that when a label moves above a marker the marker is not clickable/draggable ...
0
votes
0answers
17 views

Generate custom tile sizes with gdal2tiles

Gdal2tiles or maptiler generates tiles with tile size of 256x256 px. I have a non-square image with resolution of 1984x3062. Processing this non-square image, gdal2tiles generates tiles of 256x256 ...
0
votes
1answer
91 views

Android/Cordova WebView native HTML select causes weird DOM behaviour

I am working on an Android/Cordova app with an embedded map view using leaflet.js. The device I am using is an Nexus 7. The map is loaded using a TileLayer and all is good until... I click on a form ...
-2
votes
0answers
30 views

How to display geojson properties onclick in leaflet?

Using this example, how do i display the actual geojson properties in the popup within leaflet? http://leafletjs.com/examples/geojson.html
1
vote
1answer
41 views

Centering Leaflet map with getbounds and related issues

I ran into a leaflet issue but I can't solve it. May be there's a easy solution I don't know. So basically centering a map of grouped markers isn't so difficult and can be done like the following: ...
0
votes
1answer
40 views

Leaflet Map Clustering + Marker Rotation

Has anyone ever tried to use Leaflet Clustering Plugin + Marker Rotation Plugin? I tried to work with both but they work partially. In a first view, I can see some clusters and some isolated (and ...
0
votes
1answer
29 views

Leaflet JS: popup options declaration fails in IE8, but is ok in Firefox and Chrome

I am using the latest LeafletJS library to display a popup with certain popop options on a map. It works fine in Firefox and Chrome, but fails in IE8 with the error message: Invalid argument. ...
2
votes
1answer
51 views

How do I rotate a map marker in angular-leaflet-directive?

My map markers are adorable little aeroplanes and I would like to be able to orientate them? If there a way to do this programmatically without creating multiple images?
0
votes
0answers
43 views

Change the content of a variable in js without running function?

Really, I think this a somewhat easy question for someone with some more experience in javascript programming. I have a Django app to map some locations using leaflet. I'm using dajax for some on ...
0
votes
1answer
29 views

How to determine what terrain / map type a marker or point is on?

Is it possible with leaflet.js or mapbox.js to determine what terrain / map type a marker is on.. For example the sea, land, road or buildings? http://leafletjs.com/ http://mapbox.com/
0
votes
0answers
27 views

Choropleth in Leaflet

I'm fairly new to Leaflet (and stackoverflow) and I've been trying to get a choropleth to show up on my map. I have a basic leaflet map that currently shows up, but when I try to get my geoJson to ...
0
votes
1answer
48 views

How to set different zoom levels in layers in a map using leaflet.

How to set different zoom level in layers in a map. I need to show different zoom levels in different layers. For example I have 2 layers 1.city, 2.state. When map initialization zoom level is 18, ...
1
vote
1answer
78 views

can't get phantomjs 1.9 to render Leaflet SVG vector layers to png

I'm building a mapping application using the Leaflet API http://leafletjs.com/. I would like to use phantomjs to generate static screenshots of maps. As an example, attempting to render this page: ...
0
votes
0answers
52 views

sync d3.js map and leaflet map

In one application I have both d3 map and leaflet map, I follow Mike's code to sync them(http://bost.ocks.org/mike/leaflet/) and draw svg points on leaflet map. The problem is that some points being ...
0
votes
0answers
69 views

Multiple GeoJSON layers in D3 + Leaflet

I am learning how to combine Leaflet and D3 with the tutorial here: http://bost.ocks.org/mike/leaflet/ I would like to know how to add more than one GeoJSON layer to this tutorial - with points over ...
0
votes
1answer
33 views

Leaflet layerGroup controls

I have a series of Leaflet FeatureGroups that are made up of a series of GeoJSON layers. The FeatureGroups are conceptually similar but I need them to be separate for certain control reasons. I also ...
0
votes
1answer
34 views

Multiple maker on the same place with leaflet

I tried to display a lot of marker on a leaflet map. The data of the marker - coordinates, text... - are stored in a text file. I made a parser who parse the text, put the data in a big array and ...
0
votes
1answer
50 views

How to bring circlemarker on front in leaflet

I have two circlemarkers, A and B, at the same place Demo I'd like marker B to move to the front when I select marker A, and vice versa.
1
vote
1answer
70 views

Workaround to get leaflet canvas layer to display on top?

I'm trying to show a leaflet canvas layer on top of a L.geoJson layer. However, there seems to be a bug in leaflet where this cannot be done using the bringToBack()/bringToFront() methods. var ...
0
votes
1answer
68 views

Using leaflet mapping api, how do you determine which point in a polyline was clicked on?

I'm using the Leaflet mapping API. I would like to determine which point in a polyline has been clicked on. The polyline is one that I have rendered using the Directions services from MapQuest Open. ...
-3
votes
1answer
40 views

Huge geoJSON file — cannot even edit [closed]

I have a geoJSON file that needs to be edited. For example, I need to do a Find and Replace operation. However, I cannot even open the file (150 MB) in some applications. With TextEdit (I'm on a ...
0
votes
0answers
31 views

Asynchronous display of map point data

I want to implement a asynchronous interaction in my django web map app. I display a set of opoints (using leaflet). What I want to do is to create a view function call on a mouseover event to get and ...
0
votes
1answer
52 views

How can I set the opacity of a geojson object or layer in leaflet?

I'm trying to apply opacity to a geojson layer in leaflet.js. The documentation seems to show that opacity can be set in the style configuration. var exteriorStyle = { "color": "#ffffff", ...
0
votes
1answer
31 views

How can you make a leaflet map re-sizable?

I have a leaflet map embedded in my page, but I want to add a control to allow the div with the leaflet map to be resized by the user. I've tried plugins like jquery.ba-resize, twinhelix and one ...
0
votes
1answer
90 views

Leaflet: marker icon size on geojson layer

I'm displaying a Geojson layer with Leaflet. I would like to change de default marker icon size. Here is the code I came up: $.ajax({ type: "GET", url: "data.json", ...
0
votes
1answer
79 views

Leaflet: Update GeoJson filter?

I would like to populate a GeoJson layer with data and then dynamically filter what features to show. I have gotten the filter function to work but I do not know how to change the filter and then ...
1
vote
2answers
67 views

MarkerCluster LeafletJS plugin TypeScript definition file creation

I am using LeafletJS to map out floor plans. I recently learned a little about TypeScript at DevIntersection and wanted to start converting all of my JS to use it. Luckily someone already created the ...
0
votes
0answers
55 views

Leaflet map not showing up in Backbone

Here's my view: define([ 'jquery', 'underscore', 'backbone', 'bootstrap', 'leaflet', 'text!templates/map/MapTemplate.html' ], function($, _, Backbone, Bootstrap, L, ...
0
votes
1answer
50 views

change size of marker in leaflet

I am having one marker on map in leaflet. var centerMarker = L.marker(centerPoint, { title: 'unselected' }).bindLabel(schools[i][0]); centerMarker.on('click', selectMarker); ...
0
votes
1answer
111 views

How to make offline maps(using leaflet OSM) , by caching?

I am trying to make offline maps through caching (IndexedDB) in browser. I understand the concept is that I download and store the tiles of map first when connected to internet. Then I have to load ...

1 2 3 4 5 7