0
votes
0answers
72 views

What is the best way to draw a text on a Map overlay?

I have tried some code and finally got it working, but this seems the bad way. I draw a text on the drawable which is the map overlay. (I thought this would be easier). It has also problems. For ...
1
vote
2answers
174 views

Android Maps, drawing in Overlay constructor

I have a path() which is created from a json object. I pass the JSON object to my overlay object in my constructor. Objects that extend Overlay always call draw() any time the map is moved, rendered, ...
0
votes
0answers
112 views

Drawing on polygon in MapView (putting a circle at the top)

I have a routine that draws polygons in MapView, suggested by the example of TWiStErRob in this post, but I'm trying to include a circle, but it always appears under the existing polygons, and what I ...
-1
votes
1answer
72 views

Is there any way to get projection without creating GeoPoint?

In my application i have multiply overlays over the map. In each overlay's draw() method i draw shape using points from list. final int listSize = list.size(); for (int i = 0; i ...
0
votes
2answers
189 views

How to find route from current location to given location in Google map in android [duplicate]

Possible Duplicate: Google Maps output=kml broken? Why retrieving Google Directions for Android using KML data is not working anymore? I am just new in Google map, just started the google ...
0
votes
0answers
704 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
0answers
72 views

draw grid with nodes on an image without using WPF

I need to draw a grid of nodes on an image using .NET framework 3.5. To generate a grid I would need to make a "morphing" of the image, and would need to do this without using WPF. Could someone guide ...
2
votes
2answers
1k views

plot a route on google maps

I want to draw a route on google map with the change in my position using GPS. As my location changes(when new geopoints are created), the dot moves on the google map but i'm unable to draw the line ...
3
votes
4answers
2k views

How do I draw a line Overlay on Google Maps Android

I am trying to draw a line on my maps project, but can't get the line to draw. Where and how do I declare the overlay? I've tried various methods, but can't get it to work. ie, code just displays ...
0
votes
1answer
902 views

Android draw with finger over webView

How can I draw over a webView, I want a user to be able to circle and doodle over the webview. The gestureoverlayview would be good, but the drawn line will always disappear after the user takes their ...
3
votes
1answer
1k views

Cache whats being draw on MapView in Android

I am developing an app for my Universities campus that displays the campus in a MapView; then using geopoints draws the outlines of the buildings on campus on the mapView using the draw method a class ...
0
votes
1answer
299 views

What is the fastest way to draw an array of lines?

I need to draw an array of lines in overlay. Currently, I use canvas and bitmap and draw about 500 lines. The drawing time is very high - around 200 ms which is bad, but acceptable. Now I need to add ...
2
votes
2answers
858 views

android camera preview callback is drawing overlay view very slowly

I am using a face detector which follows detected faces as they move, using the Camera preview callback and drawing an overlay view on top of the preview display (where it draws circles around the ...
4
votes
1answer
10k views

Android - drawing path as overlay on MapView

I have a class that extends Overlay and implemments Overlay.Snappable. I have overriden its draw method: @Override public void draw(Canvas canvas, MapView mv, boolean shadow) { Projection ...
62
votes
8answers
62k views

Drawing a line/path on Google Maps

I've been busy for a long time finding out how to draw a line between two (GPS) points on the map in HelloMapView but with no luck. Could anyone please tell me how to do so. Suppose I use the ...