构造函数中 Google 地图 MarkerImage url 字符串的文档
google.maps.MarkerImage 的第一个参数类构造函数是一个带有多个 GET 变量的 url 字符串。
这是正在使用的网址字符串的示例。颜色变量很清楚,但是其他变量是做什么的呢?
The first argument of the google.maps.MarkerImage class constructor is a url string with several GET variables.
This is an example of the url string in use. The color variable is clear, but what do the other variables do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,特洛特说的是。基本上,markerimage URL 是图像的相对或绝对 URL,仅此而已。因此,根据您获取图像的位置,它可能有一个查询字符串(例如,如果标记是由服务器端脚本动态生成的)。因此,在这种情况下,您恰好使用 Charts API 来获取标记的动态图像。
Yes, what Trott says. Basically the markerimage URL is a relative or absolute url to an image, nothing more or less. So depending on where you get your images from, it might have a querystring on it (e.g. if the marker is to be dynamically generated by a server-side script). So in this case you just happen to be using the Charts API to get a dynamic image for your marker.
第一个参数不一定是带有多个 GET 参数的 URL 字符串。它只是一个 URL 字符串。 Google Maps API 使用该 URL 来检索图像。如果存在 GET 参数,则从中检索图像的服务器将使用(或忽略)它们。
您链接到的示例包含使用 Google 图表 API 的 URL。参数的定义位于 http://code.google.com/ apis/chart/image/docs/chart_params.html。
The first argument is not necessarily a URL string with several GET parameters. It is simply a URL string. Google Maps API uses that URL to retrieve the image. If there are GET parameters, they are used (or ignored) by the server from which the image is being retrieved.
The example you link to contains a URL using Google's Charts API. The definitions for the parameters are at http://code.google.com/apis/chart/image/docs/chart_params.html.