Skip to content Skip to sidebar Skip to footer

Find Latitude & Longitude Of A Given Ip Address Using Ipmapper

I'm getting the following error 'RefrenceError: IPMApper not defined', when I try to get the Latitude and Longitude for a given IP address using IPMapper. I'm specifying code for y

Solution 1:

Have you got the file 'ipmapper.js' in your solution / project? Does the src reference match the location on your server?

Try putting the IPMapperjs reference to use absolute path in your project rather than relative path

(file would be in the root of the website)

Solution 2:

You have to include these three js

<scripttype="text/javascript"src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script><scripttype="text/javascript"src="http://maps.google.com/maps/api/js?sensor=false"></script><scripttype="text/javascript"src="ipmapper.js"></script>

Please refer this link

Post a Comment for "Find Latitude & Longitude Of A Given Ip Address Using Ipmapper"