I want to plot the Sicily with a lat/lon grid and respective values. This is what I've done so far:
latRange = Range[36.61, 38.36, 0.5];
lonRange = Range[12.34, 15.70, 0.5];
exampleMap = GeoGraphics[
{
GeoStyling["ReliefMap"],
Polygon[Entity["Island", "Sicily"]]
},
GeoGridLines -> {
latRange,
lonRange
},
Frame -> True,
ImageSize -> 700
]
The problem is that frame ticks does not correspond to correct values of latitude and longitude (I want also to rotate the map but maybe it's better to ask in another question); latitude labels are wrong, as we can see from Google Earth for example:
Latitude values that I've set in fact are in a different range. Longitude lines seem correct but I'm not sure at this point.
How I can set the frame ticks with correct values of latitude and longitude?


