Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写了在 sencha-touch 框架中正常工作的地图代码。我需要一些像wikimapia.org这样的东西,它有一个固定的十字架或中间的任何物体,但地图是可拖动的。然后我可以单击对象并显示地址。
任何帮助请...
在类似问题上查看我自己的答案
此外,我还将当前位置设置为位于marker地图中心。因此,您的标记位于屏幕中心的问题也得到了解决。
marker
您可以创建一个并在标记的侦听器上infoWindow打开它。click像这样,
infoWindow
click
google.maps.event.addListener(someMarker, 'click', function() { infowindow.setContent('_Place Address_'); infowindow.open(map, someMarker); });