Tagged Questions
0
votes
0answers
21 views
Mapview projection toPixels, will it work outside screen?
Will it still return the screen x,y of a geopoint that isn't even in screen ?
0
votes
2answers
261 views
Android: MapView Projection inaccurate
Because of some calculations I have to transform a GeoPoint to screen coordinates, do something with them and then transform them back to a GeoPoint.
Sadly after those transformations the new ...
0
votes
1answer
178 views
Mapview geopoint is holding screen
I'm having troubles on a simple task.
I'm trying to draw a square at the top left of the map shown below. (top left of the map projection)
But when I convert pixel 0,0 to latitude and longitude ...
2
votes
1answer
807 views
Google android mapview lat long to topixel projection issue
I am getting different x,y value for a specific lat,long. I wonder why it is happening. May be I lack knowledge. So, if you anyone can explain by observing the following code snippet then it would be ...
1
vote
1answer
119 views
Fallacious event.getY() of MapView in APIs 14+
App is to create a mark on the google map. It creates a mark in the right place with the APIs up to 13.
GeoPoint longpressLocation = getProjection().fromPixels((int)event.getX(),
(int)event.getY());
...
0
votes
1answer
299 views
Get android's MapView Projection's last state
I have two activities one displaying map view and another listview, the main objective is both should remain in sync in respect to the data displayed by both of them.
POIs displayed on map should get ...
3
votes
1answer
4k views
Android: MapView draw circle with dynamic radius (in meters)
My known data are my current location (GeoPoint) and radius in meters. I want to draw circle around my current location based on map projection and radius.
My map view overlay does override draw ...
1
vote
2answers
2k views
Android MapView Projection returning negative numbers
I'm using the below code to put an overlay on my MapView. For some reason after itterating through the location data it draws the point in the same place.
It seems to be happening on conversion from ...