差分
このページの2つのバージョン間の差分を表示します。
次のリビジョン | 前のリビジョン | ||
20210928 [2021/09/28 09:01] – 作成 133.11.144.10 | 20210928 [Unknown date] (現在) – 削除 - 外部編集 (Unknown date) 127.0.0.1 | ||
---|---|---|---|
行 1: | 行 1: | ||
- | ====== 20210928 ====== | ||
- | |||
- | ===== Captureエリア内のデータの取得 ===== | ||
- | |||
- | <% /* キャプチャエリア内のサンプルの組成を取得 */ %> | ||
- | mymap.on(" | ||
- | <% /* マップの移動・拡大・縮小時に4隅の緯度経度を取得 */ %> | ||
- | // console.log(" | ||
- | var bounds = mymap.getBounds(); | ||
- | var north = bounds._northEast.lat; | ||
- | var south = bounds._southWest.lat; | ||
- | var east = bounds._northEast.lng; | ||
- | var west = bounds._southWest.lng; | ||
- | |||
- | <% /* キャプチャエリア内のサンプル情報を取得 */ %> | ||
- | capturedSampleList = []; | ||
- | |||
- | markerList.forEach(marker => { | ||
- | if (south< | ||
- | if (west< | ||
- | capturedSampleList.push(marker.name); | ||
- | } | ||
- | } | ||
- | }) | ||
- | |||
- | console.log(capturedSampleList); | ||
- | }); | ||
- | |||