This repository was archived by the owner on Nov 30, 2018. It is now read-only.
This repository was archived by the owner on Nov 30, 2018. It is now read-only.
Windows not showing on device #1773
Open
Description
I am implementing the windows directive within the markers directive in order to show a window onClick. It is working in the browser however it will not show on my phone for some reason. just acts as if the marker is not clickable.
HTML:
`
### JavaScript:
` $http.get('js/data.json').success(function(data) {
$scope.locations = data.locations;
for (var key in $scope.locations) {
$scope.officeLocations.push({id: key,latitude: data.locations[key].lat,longitude: data.locations[key].lon,title: data.locations[key].displayname, loc: data.locations[key]});
}
//console.log(data.locations);
});
$scope.map = { center: { latitude: $scope.cur.lat, longitude: $scope.cur.lon }, zoom: 10};
uiGmapGoogleMapApi.then(function(maps) {
$scope.markerL.push({id: 44,latitude: $scope.location.lat,longitude: $scope.location.lon,title: $scope.location.displayname });
});`
PLEASE some one help!