-1
マッププラグインを使用してアプリケーションにマップを表示します。Google maps sdk nativescript:マップの画像をキャプチャできますか?
onMapReady(event) {
this.mapView = event.object;
var marker = new Marker();
marker.position = Position.positionFromLatLng(45.46, 9.18);
marker.title = "Milano";
marker.snippet = "Italia";
marker.userData = { index: 1 };
this.mapView.addMarker(marker);
this.mapView.settings.zoomGesturesEnabled = false;
this.mapView.settings.zoomControlsEnabled = false;
this.mapView.settings.rotateGesturesEnabled = false;
this.mapView.settings.scrollGesturesEnabled = false;
this.mapView.settings.compassEnabled =[enter image description here][1] false;
this.mapView.settings.indoorLevelPickerEnabled = false;
}
とテンプレート::
<MapView #mapView row="0" col="0" [latitude]="latitude" visibility="visible" [longitude]="longitude" [zoom]="zoom" (mapReady)="onMapReady($event)"></MapView>
私は(私はマップを移動することはできませんので、スタティック)マップの静的なビューを取得し、このコードではなく時にマップには、このコードで動作します私が定義したズームレベルまでズームがあります。この初期の「ズーム」を解除することはできますか(ズームレベルまでマップカメラは移動しますか?それともマップのイメージだけを表示できますか?
INFO: nativescript 3.2.0/TNS-コアモジュール3.1.1/TNS-アンドロイド3.2.0
nativescript-グーグルマップ-SDK 2.4.1