0
votes
0answers
2 views

GoogleMapsJS map addOverlay. Is there a limit in map overlay?

In my program I have 30 checkboxes, each checkbox triggers to add an overlay to the map. It goes well, but when 19 and above checkboxes are checked, all overlays vanished. No overlay is left. Why is ...
1
vote
1answer
30 views

Updating and organizing overlays on an MKMapView

I want to do overlays on an MKMapView. So I created my custom object: @interface Spot : NSObject @property int spot_id; @property CLLocationCoordinate2D coordinate; @property float radius; @property ...
0
votes
0answers
23 views

Trouble adding an Overlay Polygon

I'm trying to add an overlay polygon following this tutorial: http://www.shawngrimes.me/2011/04/adding-polygon-map-overlays/ but, adapting it to my app it doesn't work: it shows just two standard ...
0
votes
0answers
25 views

retain line draw by viewForOverlay on map when again calling

I like to add the straight line on map view, and I achieved it by viewForOverLay method,this functionality called when I pressed button , when I agin button with new source and distination position ...
0
votes
0answers
52 views

Layout over android map

Is there a way, to add some kind of overlay over the google map in witch i will show new layout with informations about the marker, layout should not be full screen. I need to display informations ...
1
vote
0answers
54 views

ImageMapster text overlay

How to achieve text overlay in ImageMapster? ImageMapster seems to be a very popular plugin and I am doing research in order to decide whether to use it in my project. In the application that I am ...
1
vote
1answer
192 views

Using GraphicsPath to draw roads on a map image

I have an application (WinForms C#) that allows users to draw a line (free draw) to highlight roads of interest on a bitmap taken from Google Maps. I am using the Mouse Down/Move/Up events to add ...
1
vote
0answers
42 views

Why doesn't my map overlay work?

This is my overlay class public class Overlay extends ItemizedOverlay<OverlayItem> { public Overlay(Drawable defaultMarker) { super(boundCenter(defaultMarker)); } ...
1
vote
1answer
113 views

How do I add an MKOverlay only ONCE?

I have an MKOverlay with a series of animated images on a CALayer (on the MKOverlay). Whenever I move or zoom on the map, the MKOverlay is added again, this causes multiple versions of the same ...
0
votes
1answer
287 views

android mapsforge overlay doesn't show in view

I need a little help. I wrote an android app using "org.mapsforge.android.maps". There I create a custom overlay wich I wanna show in the map. The map is shown but without my Overlay. I see that ...
0
votes
1answer
138 views

independent actions to map overlays -xcode

how can I add independent actions to map overlays? see my code for example: I am not sure if I should use a loop or an if statement. And if I use If statement how it should be? thank you in advance.. ...
1
vote
3answers
510 views

Java GUI App - Overlay Images on a Map (background image)

I want to create a simple GUI application that displays a map of a city. I then want to programatically add items (assets) such as hotels, restaurants to this map as images. Pseudo-Code would be as ...
0
votes
1answer
152 views

MKCircle overlay not drawn on MapView

I properly hooked up the MapView to my delegate. Also, the user location does show up on the map, but the MKCircle that's supposed to show up at this same location doesn't do so. It worked at some ...
1
vote
1answer
92 views

Storing a drawn map path using core data

I'm creating an app that is based off the breadcrumb sample code provide by Apple and I would like to store the overlay path drawn by the app in core data. I would then like to recall this data later ...
0
votes
0answers
700 views

Android Google maps MyItemizedOverlay and draw route(solved)

I want to put ItemizedOverlay on Google Maps, but I have street route drawing on the map and when I call MyItemizedOverlay myItemizedOverlay = new MyItemizedOverlay(marker); ...
0
votes
2answers
118 views

Create directions on a map based on custom data

So what I'm trying to do is the following: Have a map (such as Google Maps or questMaps). It doesn't matter at all which API I need to use. On that map have an overlay on the streets. So say (for ...
2
votes
2answers
85 views

Visible Geopoints within phone screen

I am displaying some marker on map. i want to find out the visible geopoints(markers) within phone screen. Is it possible? thanks in advance
0
votes
1answer
1k views

How to clear overlays in jQuery UI map?

I've write this code to create overlay in a map with Jquery ui map. function drawTratta() { $.getJSON('json/getTratta.php?mode=set', function(data) { var flightPlanCoordinates = []; ...
0
votes
1answer
814 views

Android Itemizedoverlay! place and remove markers on map

I am trying to show the user's current location and allowing user to place one marker on the map. When user is tapped on the marker he placed, the marker will disappear and he can put another one on ...
0
votes
1answer
181 views

Android map overlay exact coordinates

I am putting an image as an overlay on an Android google map. Does the image appear aligning the origin of the image at the coordinates? Is there a way to control it? If I want the center of the ...
1
vote
1answer
191 views

dynamically populating maps in android

So I have a mapView and I want to dynamically populate it based on a database. I can do each geopoint indidivually but for some reason when i try to do them all it doesn't display the points on the ...
1
vote
1answer
163 views

Overlays not displaying in android maps

So I'm just trying to create a generic mapView in android and put a few geopoints in it. I've followed the instructions from the android developer website and had no success... can anyone help? here ...
0
votes
1answer
363 views

Big problems with drawing/understanding a MKOverlayView on a MKMapView

I'M trying to use an overlay to draw a route on a MKMapView. This is my code: Create the view (gets invoked upon a button press): NSArray *route = [UCGeoConverter ...
0
votes
1answer
64 views

Center ItemizedOverlayItem to screen Center

I have a MapView and instatiate an ItemizedOverlayItem in the onCreate() method. My problem is, that I want to center it to the screen instead of a GeoPoint on the map. Is there a way to do this? ...
1
vote
1answer
197 views

how to test if all the markers have been loaded in google map?

I need to use some kind of progress bar or wheel etc because i have a lot of markers and its taking some time to load all of them. I would like to use an animated image like loading or wheel etc as ...
1
vote
1answer
535 views

custom overlay on google map

How do I make the progress wheel show only until all the markers are plotted? there are like 50 addresses that jquery each function goes through and geocode and plots as markers and i need to show the ...
0
votes
1answer
1k views

proximity search google map

I am using google map v3 to capture all the addresses in a MS SQL database table called Locations which will have columns like LocationName, LocationAddress, LocationZip, LocationState, LocationCity, ...
0
votes
1answer
231 views

Handle click on route

I'm trying to validate a clickable route functionality using google map API. I established route display between two coordinates using the map API. To realize this, I used the following tutorial ...
0
votes
2answers
1k views

android google map overlays ontap

I have created 3 classes. Each of them extends Overlay. And each of them has "complex" overrided draw method. And that is why I choose to override Overlay instead of use ItemizedOverlay. Now for ...
0
votes
3answers
379 views

Show my position using a marker on android (previous marker still appear when position update)

I tried to show my current position on map using a marker, find my code below. but if my position is changed (position updated), the previous marker is still appear. how to remove previous marker. ...
2
votes
1answer
715 views

Circle Overlay is not showing on map

I am trying to add a circle overlay to a map, but it is not appearing: - (void) displayOverlayOnMap:(double) lat andlng: (double) lng { CLLocationCoordinate2D bostonCoord = ...
1
vote
1answer
481 views

How to create transparent layer with route-me

Im struggling with something which I can't get my head arround I have a tile source with transparent tiles that I want to add on top of a base map (open streetmap) but it's not working as it should ...
0
votes
2answers
1k views

iphone like annotation on android map

Inside my android map I have three overlays looking like this: what I want is when I tap on each overlay to obtain something like an iphone callout. Something similar with what you see on the second ...
0
votes
2answers
1k views

Map overlay android and search place

I am creating an application which searches the address on the map and returns the place as marker on the map. this is my code package org.gmaps.com; import java.io.IOException; import ...
0
votes
1answer
419 views

Android - can't access drawable nullpointer exception

I've tried to mark multiple locations on my mapview. There is, a class extends from ItemizedOverlay. There is a constructor for that which has two paramaters (Drawable defaultMarker, Context c) In ...
0
votes
0answers
808 views

Creating custom map on Android

I am creating Map applications for both Desktop(C#) and Android. In some case I need to use custom maps for my applications and it should be able cache in the devices/PCs. I have already found map ...
0
votes
1answer
277 views

GroundOverlay just like javascript in android

I am trying to create a ground overlay similar as those available in web APIs provided by Google. I came across these on StackOverflow does-android-maps-support-ground-overlay ...
0
votes
1answer
184 views

Android Map Overlay Shifting after AlertDialog opened

I have a map based Android program, that is working nicely, I have it opening an alert dialog when an overlay is clicked... I start the app, and see my overlays, and all is fine, until I select an ...
0
votes
3answers
877 views

Image with border in map overlay using android

I show this link but answer was just only display the balloon. Picture with a border as a map overlay But I am finding just like the display images with border.... Like this. If any one have any ...
0
votes
2answers
690 views

How to add views to overlay on map?

i want to know if there is a way to extend overlays in order to make them able to display views on specific locations on map? if that's possible could you help me with code snippets or links i ...
0
votes
2answers
994 views

Adding custom pattern overlays on Google Maps

I'm currently using Google Maps API and I'm open to try out other free map APIs to accomplish my task. In one of the projects I'm working on, I need to be able to overlay multiple shape overlay ...
1
vote
1answer
384 views

Display Image as Map and that can behave like default mapview(map)

I need to show an image which is actually a map with coloured areas, also I need to be able to: zoom in and out using two fingers scroll the image as it is bigger than screen Put marker on image, ...
0
votes
1answer
287 views

How can I use an image for the user to make a custom map overlay?

I am attempting to let the user select an image from the gallery on the SD card. I am able to get the image from the gallery, but I don't know how to make a map overlay on Google Maps with the custom ...
0
votes
1answer
2k views

How to drawan overlay with buttons, text and image on a google map

I am new to android. I am working on a project which uses map. I want to draw an overlay item on a specific geopoint which contains a rectangle, some location info and a button which makes the overlay ...
1
vote
1answer
282 views

GIS map overlay intersection operation on map layers

In map overlay, is intersection of map layers a commutative operation ie layer_A intersection layer_B = layer_B intersection layer_A?
1
vote
1answer
77 views

Google MAP help

I have a map in my app, and I want to click a random place on the map and Get the longitude and latitude of the location and use that information in my app Use that longitude and latitude to get ...
2
votes
2answers
861 views

How to accurately make a map for a map-overlay

I have images covering the whole of South Africa. These are in Tiff format and have coordinates embedded into them. I am trying to take these images (about 20 images) and use them as an map overlay in ...
0
votes
2answers
282 views

Adding business information to an overlay in a MapView

On the Google maps web interface if you zoom in enough you can see businesses that are clickable. When you click the business you get the a speach bubble with a brief description of the business. ...
1
vote
1answer
127 views

Loading a a saved Map into native MapView

I wish to load a saved Google map into a MapView activity. For example here is a map that I have created in a browser. Is there a way to see this map with overlays etc in a MapView? I know that I can ...
0
votes
1answer
987 views

How to change the overlay position dynamically based on the GPS data

I have an app in which I'm trying to simulate real time tracking so I'm reading some GPS data from a class where I have stored the data and try to put those points on the map and I also add a marker ...

1 2