FeatureLayer 介面
google.maps.FeatureLayer
介面
此介面代表地圖圖層,其中包含特定 FeatureType
的地圖項目,其樣式可在用戶端覆寫,或附加事件。
屬性 | |
---|---|
featureType |
類型:
FeatureType 與此 FeatureLayer 相關聯的 FeatureType 。 |
isAvailable |
類型:
boolean 是否可使用這個 FeatureLayer ,也就是是否可為此地圖使用資料導向樣式 (Google Cloud 控制台地圖樣式中啟用了使用向量圖塊的地圖 ID 和這個 FeatureLayer )。如果為 false (或變為 false),則此 FeatureLayer 的樣式會設為預設值,且不會觸發事件。 |
datasetId optional |
類型:
string optional 這個 FeatureLayer 的資料集 ID。只有在 featureType 為 FeatureType.DATASET 時才會顯示。 |
style optional |
類型:
FeatureStyleOptions|FeatureStyleFunction optional FeatureLayer 中的 Feature 樣式。系統會在設定樣式時套用樣式。如果樣式函式更新,您必須再次設定樣式屬性。FeatureStyleFunction 套用至地圖圖塊時,必須傳回一致的結果,並應進行最佳化以提升效能。不支援非同步函式。如果您使用 FeatureStyleOptions ,該圖層的所有地圖項目都會採用相同的 FeatureStyleOptions 樣式。將樣式設為 null ,即可移除先前設定的樣式。如果無法使用這個 FeatureLayer ,設定樣式就不會執行任何操作,並記錄錯誤。 |
方法 | |
---|---|
addListener |
addListener(eventName, handler) 參數:
回傳值:
MapsEventListener 產生的事件監聽器。將指定的事件名稱新增至指定的事件名稱。傳回可與 event.removeListener 搭配使用的事件監聽器 ID。 |
活動 | |
---|---|
click |
function(event) 引數:
點選 FeatureLayer 時會觸發此事件。 |
mousemove |
function(event) 引數:
當使用者的滑鼠游標移至 FeatureLayer 時,系統會觸發這項事件。 |
FeatureType 常數
google.maps.FeatureType
常數
地圖項目類型的 ID。
請呼叫 const {FeatureType} = await google.maps.importLibrary("maps")
存取。請參閱「Maps JavaScript API 中的程式庫」。
常數 | |
---|---|
ADMINISTRATIVE_AREA_LEVEL_1 |
表示國家/地區層級底下的第一順位行政實體。 |
ADMINISTRATIVE_AREA_LEVEL_2 |
表示國家/地區層級底下的第二順位行政實體。 |
COUNTRY |
表示國家政治實體。 |
DATASET |
表示第三方資料集。 |
LOCALITY |
表示自治城市或鄉鎮的政治實體。 |
POSTAL_CODE |
表示國家/地區郵政地址所使用的郵遞區號。包括郵遞區號。 |
SCHOOL_DISTRICT |
表示學區。 |
FeatureStyleFunction typedef
google.maps.FeatureStyleFunction
typedef
用於設定 FeatureLayer
樣式的函式。
function(FeatureStyleFunctionOptions): (FeatureStyleOptions optional)
FeatureStyleFunctionOptions 介面
google.maps.FeatureStyleFunctionOptions
介面
傳遞至 FeatureStyleFunction
的選項。
屬性 | |
---|---|
feature |
類型:
Feature Feature 已傳遞至 FeatureStyleFunction 用於樣式設定。 |
FeatureStyleOptions 介面
google.maps.FeatureStyleOptions
介面
這些選項會指定地圖上 Feature
樣式的修改方式。
屬性 | |
---|---|
fillColor optional |
類型:
string optional 十六進位 RGB 字串 (例如代表綠色的「#00FF00」)。僅適用於多邊形幾何圖形。 |
fillOpacity optional |
類型:
number optional 填滿不透明度,範圍介於 0.0 和 1.0 之間。僅適用於多邊形幾何圖形。 |
strokeColor optional |
類型:
string optional RGB 十六進位字串 (例如代表綠色的「#00FF00」)。 |
strokeOpacity optional |
類型:
number optional 筆觸不透明度,範圍介於 0.0 和 1.0 之間。僅適用於線條和多邊形幾何圖形。 |
strokeWeight optional |
類型:
number optional 筆劃寬度 (以像素為單位)。僅適用於線條和多邊形幾何圖形。 |
Feature 介面
google.maps.Feature
介面
代表向量地圖圖塊功能的介面。這些是 FeatureStyleFunction
的輸入內容。請勿儲存對特定 Feature
物件的參照,因為參照不會穩定。
屬性 | |
---|---|
featureType |
類型:
FeatureType 這個 Feature 的 FeatureType 。 |
PlaceFeature 介面
google.maps.PlaceFeature
介面
代表具有地點 ID 的功能介面,其中包含 FeatureType.ADMINISTRATIVE_AREA_LEVEL_1
、FeatureType.ADMINISTRATIVE_AREA_LEVEL_2
、FeatureType.COUNTRY
、FeatureType.LOCALITY
、FeatureType.POSTAL_CODE
和 FeatureType.SCHOOL_DISTRICT
類型的功能。
這個介面會擴充 Feature
。
屬性 | |
---|---|
placeId |
類型:
string |
繼承:
featureType
|
方法 | |
---|---|
fetchPlace |
fetchPlace() 參數:無
為這個 PlaceFeature 擷取 Place 。在產生的 Place 物件中,系統會填入 id 和 displayName 屬性。顯示名稱會以使用者在地圖上看到的語言顯示。(之後可以透過 Place.fetchFields() 要求其他欄位,但必須依照一般 Places API 啟用和計費方式進行)。請勿從 FeatureStyleFunction 呼叫此函式,因為系統僅支援同步的 FeatureStyleFunctions。如果擷取 Place 時發生錯誤,則會拒絕承諾。 |
DatasetFeature 介面
google.maps.DatasetFeature
介面
代表資料集功能的介面。DatasetFeature
的 featureType
一律為 FeatureType.DATASET
。
這個介面會擴充 Feature
。
屬性 | |
---|---|
datasetAttributes |
類型:
Object<string, string> 地圖項目屬性的鍵/值對應。 |
datasetId |
類型:
string 此功能所屬資料集的資料集 ID。 |
繼承:
featureType
|
FeatureMouseEvent 介面
google.maps.FeatureMouseEvent
介面
這個物件是從 FeatureLayer
上的滑鼠事件傳回。
這個介面會擴充 MapMouseEvent
。
屬性 | |
---|---|
features |
這個滑鼠事件的 Feature 。 |
繼承:
domEvent 、
latLng
|
方法 | |
---|---|
繼承:
stop
|