How do i get <map> coordinates?

/*img src=“planets.gif” alt=“Planets” usemap="#planetmap" style=“width:145px;height:126px;”

map name="planetmap"
area shape=“rect” coords=“0,0,82,126” alt=“Sun” href="sun.htm"
area shape=“circle” coords=“90,58,3” alt=“Mercury” href="mercur.htm"
area shape=“circle” coords=“124,58,8” alt=“Venus” href="venus.htm"
map
how do i get those coordinates?`

You can use this online tool.

http://imagemap-generator.dariodomi.de/

Then just copy/paste the resulting code

<img src="url/to/your/image.jpg" alt="" usemap="#Map" />
<map name="Map" id="Map">
    <area alt="" title="" href="#" shape="poly" coords="93,199,132,120,270,117,286,203" />
    <area alt="" title="" href="#" shape="poly" coords="282,105,229,164,301,199,347,167" />
    [...]
</map>

1 Like

Are you asking where planets are in the sky - their location coordinates?

If so, what you are looking for is a planet’s Ephemeris Data. Do a google search of “planets Ephemeris Data” and you will get lots of data and information. Be warned - it can be challenging to use!

actually i copied the html tag directly so it was not shown in the question i have edited the question.
sorry for the same.

actually i copied the html tag directly so it was not shown in the question i have edited the question.

sorry for the same.