选择项目时充气气球
我有一个地图活动,其中有许多地图图钉,当我单击图钉时,会打开一个自定义气球,显示有关该图钉的一些信息。另外,我有一个搜索栏,如果您输入旋钮的名称,信息就会出现在那里,但我希望它转到搜索到的引脚。 示例: 在地图上你有不同的蔬菜图钉,当你搜索胡萝卜时,搜索列表会显示元素胡萝卜,当你点击它时,胡萝卜图钉的气球会出现膨胀。所以,我的问题是:是否有某种OnTap() void方法?我知道,OnTap(int index) 返回一个布尔值。
I have a map activity that has many pins of map, and when I click a pin, a custom balloon opens, showing some information about that pin. Also, I have a search bar, where if you type the name of a knob, the info appears there, but I want it to go to that searched pin.
Example: on the map you have different vegetables pins, and when you search carrot, the search list will show the element carrot, and when you click on it, the balloon for the carrot pin will inflate. So, my question is : is there some sort of OnTap() void method ? I know, that OnTap(int index) returns a boolean.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建您自己的逐项覆盖,并重写 onTap 方法,并在您的主类中,创建逐项覆盖的实例,并调用overlay.onTap(point)
示例代码:
在主类中
create your own itemized overlay, and override the onTap method, and in your main class, make an instance of the itemized overlay, and call overlay.onTap(point)
Sample code:
In the main class