#Harmoware-VIS とは
#アプリ起動時に表示する地図の位置や視点の設定
Harmoware-VISのデフォルトでの地図の初期表示は
longitude: 136.906428,
latitude: 35.181453,
となっています。
これは名古屋市役所の位置です。
これをカスタマイズするには、アプリのルートクラスのマウント時にsetViewport
で視点を設定してください。
class App extends Container {
componentDidMount(){
super.componentDidMount();
this.props.actions.setViewport({longitude:139.692074,latitude:35.689806});
} ... }