Tagged Questions

0
votes
1answer
22 views

Multiple Markers on Google Map (Fails to display over 10 markers) - Ruby on Rails Environment YM4R Plugin

Hi, I have the following issue. I have a google map (using YM4r + Geokit) within Ruby on Rails, anyhow, i basically have an array of markers which are populated in the following ma …
0
votes
1answer
26 views

android maps: how to determine map center after a drag has been completed

Hi. Is there a way through the android maps API, where I can detect the map center after pan animation has completed? I want to use this information to load markers from a server …
0
votes
1answer
54 views

How to change Gmap markers color?

Hi! I've a custom google map with different points: Markers[0] = new Array(new GMarker(new GLatLng(45.0, 9.0)), "Location1", "<strong>Address Line</strong><br/>S …
1
vote
1answer
76 views

Snap to nearest marker

Hi there , i am using GoogleMaps and i have 2 or more markers and they are draggable. I want to snap 2 markers if they are near and merge them into 1. is this possible ? Can some …
0
votes
2answers
81 views

Server side clusters of coordinates based on zoom level

Thanks to this answer I managed to come up with a temporary solution to my problem. However, with a list of 6000 points that grows everyday it's becoming slower and slower. I ca …
0
votes
1answer
61 views

Google earth browser plugin does not accept custom markers with custom images.

I use custom images in google maps markers. I have included google earth control through google earth browser plugin. But they don't show custom images in google earth control? Any …
0
votes
1answer
23 views

Flash Gradient Marker Questoin

Hey there, I was wondering in flash how to delete gradient markers. For example, when I am working on a gradient in the color window, and hover my mouse over a marker, a plus sign …
2
votes
3answers
96 views

Averaging a set of points on a Google Map into a smaller set

I'm displaying a small Google map on a web page using the Google Maps Static API. I have a set of 15 co-ordinates, which I'd like to represent as points on the map. Due to the ma …
1
vote
1answer
606 views

Can I change the marker in a Google Maps embedded map (iframe)?

I know I can do it with the Google Maps API, but do you know if there is a way to change the marker in an embedded Google Map? I want to replace the default "A" button for a "B" b …
2
votes
5answers
748 views

Google Maps - Thousands of markers - JSON

In the following example the markers are loaded from a JSON. If there are 20,000 markers the JSON is going to be quite big. Is there any way to send different JSON files accordi …
3
votes
3answers
288 views

Is there a way to identify which Google Map Marker has been clicked?

The follwoing code loops over a json object to place marker on a google map. Which works fine. function displayMarkers(data){ for(var i = 0; i < data.Lat.length; i++){ …
2
votes
1answer
236 views

Google Maps Tiles - how to divide 30k coordinates into tiles

Is it possible and effectively divide 30k (and growing) or more coordinates into tiles on Google Maps? My goal is to index all coordinates - assign to a tile and than define a til …
0
votes
1answer
87 views

Google Maps API - Map no longer displays

Hello, I setup a directions page for a small company that I do work for. It has a few markers and lets people get directions to the location from wherever they are. For some reaso …
2
votes
1answer
85 views

How do I work out which of my markers are visible in my Google map?

Here is what I am trying to do. I have about 160 places of interest. The user enters their address (postcode, full address, whatever) which I use Google to geo-encode. I then creat …
1
vote
1answer
143 views

When writing Eclipse JDT plugins, is there a way to track appearace of certain strings in code?

I'm writing an Eclipse plugin for the JDT. I need a functionality that tracks certain strings or regular expressions and possibly creates markers. I know that Eclipse already doe …