我正在尝试在 Google Map (v3 API) 中收紧一些重复的 HTML。
- 该地图包含 50 个标记。
- 每个标记都有一个样式化的 infoWindow。
- 每个 infoWindow 都包含表示文本和图像的 HTML。
- 每个 infoWindow 的文本都是相同的,但图像是唯一的。
我想将文本 HTML 放入一个变量中,然后用它来替换代码中重复的字符串。
这是 infoWindows 的呈现方式:
var locations = [
[39.11009, -120.03169, '<same text html><unique image html>'],
[37.77493, -122.41942, '<same text html><unique image html>'],
[48.85320, -119.30206, '<same text html><unique image html>'],
[48.77734, -121.81320, '<same text html><unique image html>']
];