有什么方法可以在 Google 地图( Flex )中设置滑块的最小、最大限制吗?
我想在 Google Maps 中设置滑块的最小和最大缩放限制,但在 Flex 实现中。
之前此处也曾提出过同样的问题。但问题和答案都是针对 Javascript 实现的。
我在 Flex 中解释,但出现错误:
无法分配给 com.google.maps.wrappers.IMapTypeWrapper 上的 getMinimumResolution 方法。
我做了什么:
var mt:Array = gmap.getMapTypes();
for (var i:int=0; i<mt.length; i++) {
mt[i].getMinimumResolution = function() {return 6;}
}
如何在 Flex 中设置它?
I wan to set minimum ans maximum zoom limit for slider in Google Maps , but in Flex Implementation.
Same question is asked here before . But the question as well as answers are for Javascript implementation .
I interpreted in Flex , but got error :
Cannot assign to a method getMinimumResolution on com.google.maps.wrappers.IMapTypeWrapper.
what i did:
var mt:Array = gmap.getMapTypes();
for (var i:int=0; i<mt.length; i++) {
mt[i].getMinimumResolution = function() {return 6;}
}
how to set it in Flex ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对它做了一点调整,这是解决方案:
和事件监听器:
I have tweaked it a liitle bit and here's the soln:
And the Eventlistener :