Reputation: 155
Hi I am new to android development.
I am on college project its based on location which is need to convert lat/lng to pixel coordinates. Here i added example image to find excate x,y for marked point here
Given data is 4 lat/lng points for corners of image
Upvotes: 0
Views: 336
Reputation: 805
when you click on the map to certain point the map object returns the lat/lon along with pixels
you can try this...
google.maps.event.addListener(map, 'click', function(e){
console.log(e)
});
you will find pixels object into that
Upvotes: 0