hello guys i have replaced my GoggleMaps in my application due to its lack of closing map and so clearing heap on demand, and now im using nutiteq instead, and im trying to reach google map's tiles . as the nutiteq has explained it uses parameters likes this :
"http://otile1.mqcdn.com/tiles/1.0.0/osm/{zoom}/{x}/{y}.png"
and the request will be like this :
"http://otile1.mqcdn.com/tiles/1.0.0/osm/3/5/1.png"
but the google's parameters is like this:
https://maps.googleapis.com/maps/api/staticmap?center=x,y&zoom=z&size=400x400
but the request needs a double coordinate some thing like this :
https://maps.googleapis.com/maps/api/staticmap?center=42.05123,-70.31234&zoom=1&
size=400x400
any one who familiar with nutiteq, can please explain how can i make it to use double coordinates instead single integer at the request? thanks alot