Android 上的 Google 地图选项卡
我正在尝试制作一个应用程序,其中几乎没有选项卡和内容。其中一个选项卡包含地图。
到目前为止,我已经能够创建选项卡并在其中一个选项卡上进行映射。因此,当我单击第一个选项卡时,我可以看到显示默认城市(拉斯维加斯)的地图。
我的问题是,如果现在我想创建模拟器中默认 Google 地图应用程序中已存在的相同菜单项(搜索、方向、地点等),我是否需要为所有这些菜单项编写逻辑?
就像我希望将整个谷歌地图应用程序放在我的一个选项卡中一样。是否可以?
我创建了具有放大/缩小功能的地图。现在我想添加搜索功能,该功能将搜索该地点并在地图上找到它。那么我需要为其编写整个代码和ui吗?我感觉就像是在重新发明轮子。
I am trying to make an application in which there are few tabs & one of the tab contains map.
Till now I was able to create the tabs and map on one of the tab. So when I click on the 1st tab I can see the map which shows a default city (Las Vegas).
My question is if now I want to create the same menu items (Search, Directions, Places etc.) which already exists in the default Google Map application in the emulator, Do I need to write the logic for all those menu items?
Its like I want the whole google map application in one of my tab. Is it possible?
I have created the map with zoom-in / zoom-out functionality. Now I want to add the search feature which will search for the place and locate it on the map. So do I need to write the whole code and ui for it? I am feeling like its re-inventing the wheel.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你必须为所有这些菜单项编写逻辑...谷歌地图 API 为你提供了制作它的所有工具,例如地图本身、叠加层、项目、逐项叠加层、地理编码等。但是更高级别的功能必须由您使用上述工具编写。
yes, you have to write the logic for all those menu items... the google maps api gives you all the tools to make it, like the map itself, overlays, items, itemized overlays, geocoding, etc. But the higher level functionalitys must be writed by you, using the tools mentioned above.