我使用了angular-google-map,“version”:“2.0.23”,在我的angularjs项目中显示带有标签“”的地图。直到上周它运行良好,但从某些日子开始,地图没有显示并在bowser控制台上收到警告信息:“RetiredVersion,SensorNotRequired:https://developers.google.com/ .....”
通过添加一些脚本标记我停止获取sensorNOtReq ..消息。但我不知道如何更新地图版本。?如何再次制作可见地图?请帮我?
提前感谢。
答案 0 :(得分:0)
您必须在视图中嵌入Google地图。
将iFrame与尺寸和网址一起使用。
要使其动态化,请使用$ sce进行上下文转义,因为默认情况下会在Angular中阻止外部引用。您必须通过使用$ sce调用范围来启用Google地图引擎请求。
override func collectionView(collectionView: UICollectionView,didSelectItemAtIndexPath indexPath: NSIndexPath) {
collectionView.allowsMultipleSelection = false
//GET CLICKED
var YOUROBJECT = YOURARRAYOFIMAGES.objectAtIndex(indexPath.row)
// navigate to preference view
let postView = self.storyboard?.instantiateViewControllerWithIdentifier("myTableView") as! myTableView
postView.post = YOUROBJECT.post
self.navigationController?.pushViewController(postView, animated: true)