I am using Ngmap in angular js , it works fine but there is requirement to have Image map in my html
Html Image Map :
<img class="map" src="demo_usa.png" width="960" height="593" usemap="#usa" usemap="#usa">
<map name="usa">
<area href="#" title="HI" shape="poly" coords="225,521, 227,518, 229,517, 229,518, 227,521, 225,521" ng-click="StateSelect(1)">
</map>
the above tag show image map but it also show google map , i used ng-non-bindable on map tag , it solved the issue but it also disable ng-click="StateSelect(1)" on area tag .
Angular Ng-map
<ng-map center="{{House.Latitude}},{{House.Lonitude}}">
<shape name="circle" no-watcher="true"
stroke-color="#23b079"
stroke-opacity="0.8"
stroke-weight="2"
fill-color="#23b079"
fill-opacity="0.35"
center="{{House.Latitude}},{{House.Lonitude}}"
radius="300">
</shape>
@*<marker position="[{{House.Latitude}},{{House.Lonitude}}]"></marker>*@
</ng-map>
Angular Ng-map work fine the problem is html Image map , it also show google map rather than html image map .
any solution ?
thank you .