I started to examine MepSuite in my own project (MVC 4.0).
The first examination was succeed (showing the map on home index page).
On my second examination, i added “ThinkGeo Map” control into new .cshtml partial file (other than index.cshtml) And i got the following error when browser trying to render the partial view:
“404 Not Found - http://localhost:1813/Home/thinkgeo.mvc.min_GeoResource.axd?_=1480779867654”.
It also says that “ReferenceError: mapParser is not defined”.
It’s good to note that i have following lines in web.config file:
<handlers> ... <add name="GeoResource" preCondition="integratedMode" path="*_GeoResource.axd" verb="*" type="ThinkGeo.MapSuite.MvcEdition.GeoResourceFactory" /> </handlers>
AND
<httpHandlers> ... <add path="*_GeoResource.axd" verb="*" type="ThinkGeo.MapSuite.MvcEdition.GeoResourceFactory" /></httpHandlers>
And also have refrences of ‘MapSuiteCore.DLL’ &‘MvcEdition.dll’ &‘WindowsBase’ in the project.
what is just happening?
Am i forget something?