构造函数中 Google 地图 MarkerImage url 字符串的文档

发布于 2024-12-11 09:07:46 字数 419 浏览 0 评论 0原文

google.maps.MarkerImage 的第一个参数类构造函数是一个带有多个 GET 变量的 url 字符串。

在此处输入图像描述

这是正在使用的网址字符串的示例。颜色变量很清楚,但是其他变量是做什么的呢?

The first argument of the google.maps.MarkerImage class constructor is a url string with several GET variables.

enter image description here

This is an example of the url string in use. The color variable is clear, but what do the other variables do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

香草可樂 2024-12-18 09:07:46

是的,特洛特说的是。基本上,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.

迎风吟唱 2024-12-18 09:07:46

第一个参数不一定是带有多个 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文