这里映射ZoomRectangle控件的用法

时间:2019-06-27 12:17:45

标签: here-api

我寻找了H.ui.ZoomRectangle用法的一些示例,但找不到。

我试图这样使用它:

const zoomrectangle =  H.ui.ZoomRectangle();
ui.addControl('zoomrectangle', zoomrectangle);

但得到:Uncaught TypeError: this.qa is not a function

该控件应如何正确使用?

编辑:哦,我的天哪。我忘了使用new

1 个答案:

答案 0 :(得分:1)

这里是代码片段。

// Enable the default UI
var ui = H.ui.UI.createDefault(map, maptypes);
ui.addControl('zoomRectangle', new H.ui.ZoomToRectangle());

请参考下面的示例页面。

https://tcs.ext.here.com/examples/v3/zoom_rectangle

快乐编码!