Tagged Questions
0
votes
1answer
115 views
Not showing multiple markers on OpenLayers
I want to show multiple markers on my Google map with OpenLayers.
Below is my code :
for (var pointcount = 0; pointcount < jsonObj.length; pointcount++) {
if (jsonObj[pointcount].Long != null ...
0
votes
0answers
174 views
How to move the marker and draw a line in openlayer?
I would like to take one marker and move it and draw a line to a particular long, lat. This is what I've got so far:
<script type="text/javascript">
var map, layer;
...
1
vote
1answer
1k views
How to open popup on mouseover in Leaflet? [duplicate]
Possible Duplicate:
How to show a popup on mouse-over, not on click?
I'm working with Leaflet library. I defined L.layerGroup and add some markers to the group. Can somebody help me with ...
-1
votes
1answer
212 views
Is it possible to show markers from MySQL database with Javascript?
I'm interested if it's possible to show markers (latit, longit) from MySQL database with Javascript libraries like Leaflet?
1
vote
1answer
1k views
OpenLayers: Load Markers dynamically from Text file
I am trying to load set of markers dynamically from a text file using OpenLayers.Layer.Text. The problem is that no markers is shown after rendering the page.
Below is the JavaScript file that is ...