Iyyanarappan
Iyyanarappan

Reputation: 155

Lat,Lon to pixel coordinates in image

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

Map Screenshot

Given data is 4 lat/lng points for corners of image

Upvotes: 0

Views: 336

Answers (1)

Akshay
Akshay

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

Related Questions