Google 静态地图中的 %7C11211%7C11206%7C11222 是什么意思?
What does %7C11211%7C11206%7C11222 mean from the Google Static Maps?
我一直在阅读和重新阅读静态地图开发人员指南的部分,但我只是不理解这部分的作用:
%7C11211%7C11206%7C11222
来自这个:
https://maps.googleapis.com/maps/api/staticmap?center=Williamsburg,Brooklyn,NY&zoom=13&size=400x400&
markers=color:blue%7Clabel:S%7C11211%7C11206%7C11222
我知道 URL 在地图上添加了 3 个相同样式的标记,中心是纽约布鲁克林的威廉斯堡,但我看不到其他标记的放置方式。
Each marker descriptor must contain a set of one or more locations defining where to place the marker on the map. These locations may be either specified as latitude/longitude values or as addresses. These locations are separated using the pipe character (|).
我没看到哪里有地址或 latitude/longitude 值..是 shorthand 吗?
我用谷歌搜索了那条线,到处都是人们用它来询问如何创建中心标记,以此为例,不解释其余部分的工作原理.
解码的 %7C11211%7C11206%7C11222
部分只是 |11211|11206|11222
-- 这些只是用竖线分隔的邮政编码。
虽然邮政编码不是您通常所说的 "address",但在这种情况下您可以将其用作一个邮政编码,因为地图只是将标记置于该邮政编码内。
如果您想使用实际地址,您可以这样做:
http://maps.googleapis.com/maps/api/staticmap?center=Williansburg,+Brookly,+NY&zoom=13&size=400x400&maptype=roadmap&format=png&visual_refresh=true&markers=size:mid%7Ccolor:blue%7Clabel:S%7CWilliansburg,+Brookly,+NY
或者,如果您真的想让自己轻松一些,请使用像 this 这样的生成器。
我一直在阅读和重新阅读静态地图开发人员指南的部分,但我只是不理解这部分的作用:
%7C11211%7C11206%7C11222
来自这个:
https://maps.googleapis.com/maps/api/staticmap?center=Williamsburg,Brooklyn,NY&zoom=13&size=400x400& markers=color:blue%7Clabel:S%7C11211%7C11206%7C11222
我知道 URL 在地图上添加了 3 个相同样式的标记,中心是纽约布鲁克林的威廉斯堡,但我看不到其他标记的放置方式。
Each marker descriptor must contain a set of one or more locations defining where to place the marker on the map. These locations may be either specified as latitude/longitude values or as addresses. These locations are separated using the pipe character (|).
我没看到哪里有地址或 latitude/longitude 值..是 shorthand 吗?
我用谷歌搜索了那条线,到处都是人们用它来询问如何创建中心标记,以此为例,不解释其余部分的工作原理.
解码的 %7C11211%7C11206%7C11222
部分只是 |11211|11206|11222
-- 这些只是用竖线分隔的邮政编码。
虽然邮政编码不是您通常所说的 "address",但在这种情况下您可以将其用作一个邮政编码,因为地图只是将标记置于该邮政编码内。
如果您想使用实际地址,您可以这样做:
http://maps.googleapis.com/maps/api/staticmap?center=Williansburg,+Brookly,+NY&zoom=13&size=400x400&maptype=roadmap&format=png&visual_refresh=true&markers=size:mid%7Ccolor:blue%7Clabel:S%7CWilliansburg,+Brookly,+NY
或者,如果您真的想让自己轻松一些,请使用像 this 这样的生成器。