hi
i want to build an app like this one:
http://devcenter.appery.io/tutorials/...
but locate with user-entered coordinate (latitude & longitude) ? how can i do this?
is it possible to have google map in offline mode and use it?
hi
i want to build an app like this one:
http://devcenter.appery.io/tutorials/...
but locate with user-entered coordinate (latitude & longitude) ? how can i do this?
is it possible to have google map in offline mode and use it?
Hi Hamed,
You can set map component center with following JS code:
pre
Code: Select all
//Note: you should replace "googlemap_1" with your google maps componen name.
var map = Apperyio("googlemap_1").options.mapElement.gmap('get', 'map');
map.setCenter(new google.maps.LatLng(30, 40));
map.setZoom(5); /pre
Regards.
thanks Yurii ...what about another question?No.2?
Hello Hamed,
Please check this post: https://getsatisfaction.com/apperyio/...
hi Evgene ...thank u