I have issue when use angular-leaflet-directive to create multiple map.
I have list City and i want to use ng-reapeat to display many map.
this is code
<div ng-repeat="(key,city) in listCity" class="panel panel-info col-md-2" style=" height: 25%;">
<div class="panel-heading">{{city.name}}</div>
<div class="panel-body" style="width: 100%; height: 100%;">
<leaflet style="width: 100%; height: 90%;" center="{{city.place_id}}"></leaflet>
</div>
</div>
it alert error Syntax Error: Token '{' invalid key at column 2 of the expression [{{city.place_id}}] starting at [{city.place_id}}]
.
when i test by change 'center' with other string then It haven't error.
Please help me fix it.
thank you so much !!!!!!!