如何在google play 商店地图上做标记

怎么用字体标示在地图上我需要标注的位置 - Google 地图 帮助
我的图书馆
怎么用字体标示在地图上我需要标注的位置 - Google 地图 帮助
怎么用字体标示在地图上我需要标注的位置
等级 110-8-17
如果你的问题与地名标注错误或是数据更新有关,你可以使用这个表单http://maps.google.com/support/bin/request.py?hl=cn&contact_type=incorrect_label_cn将问题提交给有关小组。如果你的问题与某个地点或公司(单位)数据过时(如名称、地址、电话、网址)有关,你可以在 Google 地图上进行更改。请阅读这篇帮助文章 /support/bin/static.py?page=guide.cs&guide=21670&topic=21853如果你是该公司的负责人,建议你使用 Google 商家信息进行更改。请阅读这篇帮助文章http://www.</support/places/bin/static.py?page=guide.cs&guide=28247&topic=28287有关手机版地图问题,请张贴在手机地图论坛 /support/forum/p/mobile/label?lid=7567bdc&hl=zh-CN谢谢大家与我们一起让 Google 地图越做越好!
发表评论:
TA的最新馆藏[转]&[转]&[转]&[转]&[转]&google map默认的标示GMarker,只能使用图片不能使用文字。但是在实际中,我们不可避免的需要在地图上标示文字信息。例如地名等。Google 地图 API 使我们可以通过扩展GMarker实现自定义的GMarker的子类LabelMarker。
&1&google.maps.LabelMarker&=&function(latlng,&options)&2&{&3&&&&&this.latlng&=&&4&&&&&this.labelText&=&options.labelText&||&'';&5&&&&&this.labelClass&=&options.labelClass&||&'writeb';&6&&&&&this.labelOffset&=&options.labelOffset&||&new&google.maps.Size(<span style="color: #,&-<span style="color: #);&7&&&&&options.icon&=&options.icon&||&getTextIcon();&8&&&&&google.maps.Marker.apply(this,&arguments);&9&}<span style="color: #&<span style="color: #&google.maps.LabelMarker.prototype&=&new&google.maps.Marker(new&google.maps.LatLng(<span style="color: #,&<span style="color: #));<span style="color: #&<span style="color: #&google.maps.LabelMarker.prototype.initialize&=&function(map){<span style="color: #&&&&&google.maps.Marker.prototype.initialize.call(this,&map);<span style="color: #&&&&&<span style="color: #&&&&&var&label&=&document.createElement('div');<span style="color: #&&&&&label.className&=&this.labelC<span style="color: #&&&&&label.innerHTML&=&this.labelT<span style="color: #&&&&&label.style.position&=&'absolute';<span style="color: #&&&&&label.style.width&=&'<span style="color: #px';<span style="color: #&&&&&map.getPane(G_MAP_MARKER_PANE).appendChild(label);<span style="color: #&&&&&<span style="color: #&&&&&this.map&=&<span style="color: #&&&&&this.label&=&<span style="color: #&}<span style="color: #&<span style="color: #&google.maps.LabelMarker.prototype.redraw&=&function(force){<span style="color: #&&&&&google.maps.Marker.prototype.redraw.call(this,&map);<span style="color: #&&&&&<span style="color: #&&&&&if(!force)<span style="color: #&&&&&{<span style="color: #&&&&&&&&&return;<span style="color: #&&&&&}<span style="color: #&&&&&<span style="color: #&&&&&var&point&=&this.map.fromLatLngToDivPixel(this.latlng);<span style="color: #&&&&&var&z&=&google.maps.Overlay.getZIndex(this.latlng.lat());<span style="color: #&&&&&<span style="color: #&&&&&this.label.style.left&=&(point.x&+&this.labelOffset.width)&+&'px';<span style="color: #&&&&&this.label.style.top&=&(point.y&+&this.labelOffset.height)&+&'px';<span style="color: #&&&&&this.label.style.zIndex&=&z&+&<span style="color: #;<span style="color: #&}<span style="color: #&<span style="color: #&google.maps.LabelMarker.prototype.remove&=&function(){<span style="color: #&&&&&this.label.parentNode.removeChild(this.label);<span style="color: #&&&&&this.label&=&null;<span style="color: #&&&&&google.maps.Marker.prototype.remove.call(this);<span style="color: #&}<span style="color: #&<span style="color: #&function&getTextIcon()<span style="color: #&{<span style="color: #&&&&&var&icon&=&new&google.maps.Icon();<span style="color: #&&&&&icon.image&=&"/js/map/img/mapts.gif";<span style="color: #&&&&&icon.iconSize&=&new&GSize(<span style="color: #,&<span style="color: #);<span style="color: #&&&&&icon.iconAnchor&=&new&GPoint(<span style="color: #,&<span style="color: #);<span style="color: #&&&&&WindowAnchor&=&new&GPoint(<span style="color: #,&<span style="color: #);<span style="color: #&&&&&return&<span style="color: #&}
&在页面上调用的代码:
<span style="color: #&var&marker&=&new&google.maps.LabelMarker(map.getCenter(),&{&<span style="color: #&&&&&labelText:'我在这'<span style="color: #&&&&&});<span style="color: #&&&&&&&&&<span style="color: #&map.addOverlay(marker);
现在就会在地图上显示我们自定义的GMarker标识了。
阅读(...) 评论()5835人阅读
近日出于工作需要,需要在地图上批量的绘制一批定位点,以前有朋友用过google earth做过批量导入经纬度信息,于是进行了尝试。
批量导入功能倒是好用,但由于雾霾严重,卫星图几乎观测不到任何东西,不能清晰的说明位置。
因此萌生了切换为地图模式的想法,谁知道现在谷歌地球不支持这个模式了,只能想其他办法来解决。
然而,Google地球现在支持外部的“地图信息库” 这个东东相当于一个图层,可以完美的叠加在GOOGLE EARTH上,下载其中的一个地图版就可以用于定位。
地图信息库地址:&
此外还有 地震带分布、GDP分布、森林覆盖率趋势等不同图层,可以服务于不同行业的应用。
这个方法有一个缺点,就是精度不足,无法达到较高的精度,因此对于不需要地形信息而只需要行政地图信息的朋友,移步这个帖子:
这个能够使用KML进行批量的导入,方便地在谷歌地图上进行标记。
参考知识库
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:132775次
积分:1307
积分:1307
排名:千里之外
原创:22篇
(1)(3)(9)(9)(6)

我要回帖

更多关于 制表位怎么设置 的文章

 

随机推荐