I'm using the OpenLayers with AngularJS, everything goes well until I was starting touch the popup functionality eventually.
I know how to use $compile
service to make the dynamic content shows up in the popup by:
$scope.data = {
text: "Dynamic content"
};
var template = "<div><span>{{data.text}}</span></div>";
$scope.showPopup = function() {
var content = $compile(template)($scope);
var lonlat = "-5694.06868525478, 6708925.0877411375";
$timeout(function() {
var popup = new OpenLayers.Popup.FramedCloud("popup",
OpenLayers.LonLat.fromString(lonlat),
null,
content.html(),
null,
true
);
map.addPopup(popup);
}, 0);
};
but I was struggling with the event handler now, if I change the template
to(note the input and ng-click
after the span):
var template = "<div><span>{{data.text}}</span><input type='button' ng-click='func()' value='click me'/></div>";
and define the event handler in $scope
:
$scope.func = function() {
console.log("Hello, world");
};
but the event cannot be triggered. I highly doubt that using the content.html()
will lose some important information which angularjs cares about. When I tried the following code:
var template = "<div><span>{{data.text}}</span><input type='button' ng-click='func()' value='click me'/></div>";
var content = $compile(template)($scope);
angular.element("#footer").append(content);
this snippet works perfectly as expected(ng-click works here as well). The only difference between those two usage is: content
and content.html()
.
But I cannot use content
given the OpenLayers.Popup.FramedCloud
expects an static html content string.
Any ideas about this? Thank you very much.
I use leaflet
Create your Scope object
Your html String
Parse HTML into DOM element
Compile the template
Link the compiled template with the scope.
Don't forget to inject ($compile) into your code.