如何在不使用google地方api的情况下显示地点?

时间:2013-04-11 06:42:30

标签: android mysql google-maps google-maps-api-3

您好我正在为盲人开发一个Android应用程序,我想向用户显示附近的位置和公交车站。

我不想使用google places api但我需要在MySQL数据库中输入商店的名称,地址,类型,经度和经度,然后使用此数据库将相关数据发送到Android应用程序。< / p>

你能发表一些我可以学习的教程吗?

1 个答案:

答案 0 :(得分:0)

首先你必须从MySQL数据库中获取数据在android中使用它

此处是您需要的tutorial1tutorial2以及refrance link

添加标记:

float lat = -23.4456f;
float lng = 45.44334f;
LatLng point = new LatLng(lat, lng);

MAP.addMarker(new MarkerOptions().position(point).title("my place name"));

also check this for more detail这里是best detail as per you requirement(谷歌地图v2中没有,但你有更多的想法)。