mynameisalon
mynameisalon

Reputation: 27

How to convert Longitude/ Latitude and zoom level to Google coordinates in C#?

I want to write a function in c# which takes geo coordinates (for example, longitude = 30.23423432 latitude = 23.995454342 ) and a zoom level (for example, 12) and converts it to a google tile coordinates ( for example, x= 43234 y=26234 ).

Upvotes: 1

Views: 1030

Answers (2)

Alexander Reifinger
Alexander Reifinger

Reputation: 532

An option is to utilize the UTM/MTM interface to Google. The link to it is http://leware.net/geo/utmgoogle.htm.

Upvotes: 0

Related Questions