Tagged Questions
2
votes
1answer
48 views
How to render iD editor-style streetmaps?
Is there a simple way to render OSM data (let's start with just streets and names for a single metro area) client side as nodes and edges like the new iD editor?
I'm comfortable with d3 but am ...
2
votes
1answer
109 views
ArcGIS JavaScript API geometry service offline capabilities
Lately I've been going through ArcGIS JS API samples, but from what I've seen, it looks like all geometric functions always go through server, and use server side REST functions. There is no option to ...
0
votes
0answers
58 views
Reset style on select Leaflet polyline
Using Leaflet, how can I reset a polyline to it's previous color after it was selected? I have the following function that has been applied to each polyline when constructed:
function ...
1
vote
1answer
37 views
Display mouse position from graph on a map
i need to develop a web application which shows a map, that displays a GPS Route.
So far I can do this using Openlayers or ArcGIS Server.
Now I want to add an interactive graph below the map. In this ...
-3
votes
1answer
45 views
What is the best way to develop mapping app for analysis and queries? [closed]
I would have some polygons and points data, and I want to develop api which will allow users to perform analysis and queries like demographic data buffered 20km around some address etc. So, those ...
5
votes
1answer
151 views
Possible ways to display maps offline, inside mobile hybrid app
I want to develop a mobile hybrid application to run on both Android & iPhone devices in which i want to display my own map data. I have the SHP files with the data i need. I have Geoserver and ...
0
votes
1answer
55 views
Why won't this mapbox map load into a DIV container?
All,
For the life of me I can't figure out why I can't load a map into a CSS template I'm trying to customize.
I've placed a fiddle here:
http://jsfiddle.net/mapbaker/Du7zq/10/
Basically I'm ...
2
votes
1answer
227 views
ESRI Javascript API Export to Shapefile and CSV
I am working on a Javascript Web Application using the ESRI Javascript API v3.3. My application allows the user to edit and query data and also provides a table for attributes.
I would like the user ...
2
votes
2answers
400 views
ESRI Javascript API: How to hide infoWindow while using measure tool?
In my Javascript API Web application I'm using the infoWindow to query a parcel layer and display display information in a popup when I click the parcel. I've set this functionality to turn on and off ...
1
vote
1answer
651 views
How to geocode addresses from MySQL and add them like markers to the Google map?
I'm using Google Maps API and Google Geocoding for geocoding addresses. I have table named 'users' and column named 'location' in MySQL database. Column 'location' contains addresses. I need to ...
1
vote
1answer
149 views
Does Leaflet has option for scale dependent layers?
Is it possible to show layers with Leaflet depending on scaling? For example not show counties until zoom level reaches 10.
Thanks.
1
vote
2answers
297 views
How to use Leaflet marker clustering with image map only?
I have image map of one state, where I would like to put about 100 markers. Is it possible to use only one image map instead of CloudMade tiles Leaflet usually uses? So, I need only that image to be ...
3
votes
1answer
79 views
How to set up a maximal zoom for polygons in Leaflet?
How to set up a maximal zoom for some layer, for example state polygons? I need that my US polygons which represent states have maxZoom 6, and when zoomed higher than 6, that US counties show up ...
2
votes
0answers
211 views
Problem with multipolygon in Leaflet
I'm using Leaflet L.Polygon, but for some reason there's only blank site. Here's my code:
var map = L.map('map').setView([37.8, -96], 4);
var cloudmade = ...
8
votes
3answers
333 views
Chart inside pop up window in Javascript
How to show a chart inside pop up window? I'm using Leaflet JS, which has support for raphael plugin http://dynmeth.github.com/RaphaelLayer/. Is it possible to create a div inside popup window? I was ...