Group Abstract Group Abstract

Message Boards Message Boards

Help with map display

Posted 10 years ago
POSTED BY: Nathan Lundholm
2 Replies
Posted 10 years ago

del

POSTED BY: Bill Simpson
Posted 10 years ago

Perhaps you can look at this and see how to adapt it to display multiple points on the same map

points = {};
For[i = 1, i < 6, i++,
  point = Input["What are the {x,y,z} coordinates?"];
  AppendTo[points, GeoMarker[GeoPosition[point]]];
];
GeoGraphics[points, GeoRange -> "World", GeoProjection -> "Robinson"]

Note: You enter those x,y,z coordinates inside braces, like this,

{13, 25, 37}

for each point

POSTED BY: Bill Simpson
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard