我寻找了H.ui.ZoomRectangle
用法的一些示例,但找不到。
我试图这样使用它:
const zoomrectangle = H.ui.ZoomRectangle();
ui.addControl('zoomrectangle', zoomrectangle);
但得到:Uncaught TypeError: this.qa is not a function
该控件应如何正确使用?
编辑:哦,我的天哪。我忘了使用new
。
答案 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
快乐编码!