Eg: [360590, 555610] - [lng, lat] in meters from google map api - GeoJson data
{
\"type\": \"FeatureCollection\",
\"features\": [
{
\"type\":
Are you sure that these coordinates are in a meter?
It may be EPSG: 27700 or EPSG:4326 so you can try with it.
and you this link QGIS for convert coordinates and It might be useful for you.
Mapbox has a Utility class that can perform the conversion of meters to latitude/longitude for you:
public static Vector2d MetersToLatLon(Vector2d m)
Converts Spherical Mercator EPSG:900913 in xy meters to WGS84 lat/lon.
public static Vector2d LatLonToMeters(Vector2d v)
Converts Vector2d
struct, WGS84 lat/lon to Spherical Mercator EPSG:900913 xy meters.
If you're looking to do the conversion yourself, then a simple approach is the following:
40,075 km * cos(latitude) / 360