declare namespace google.maps {
  /** url可以直接作为Icon */
  type UrlIcon = string
  interface InfoWindow {
    /** 获取Map, 文档中没写这个方法 */
    getMap(): Map | undefined
    /** 获取锚点, 文档中没写这个方法 */
    getAnchor(): Marker | undefined
  }
}
