Hello guys,
Just to know if anyone here has used Annotation[] together with GeoGraphics[]?
I'm trying to insert information (weight type) into Points in GeoGraphics[] and here are some attempts that worked (just a simple example):
{GeoGraphics[{Annotation[Point[GeoPosition[{10, 200}]], {2, 4, 6},
"Mouse"],
Annotation[Point[GeoPosition[{10.1, 200}]], {3, 5, 7}, "Mouse"]}],
Dynamic[MouseAnnotation[]]}

But that way (above) it only happens with Dynamic[]..
Below, I managed to insert MetaInformation[], but I don't know if it is very good to retrieve the information in a computable way:
b=GeoGraphics[{Point[GeoPosition[{10, 200}]],
Point[GeoPosition[{10.1, 200}]]},
MetaInformation -> <|Point[GeoPosition[{10, 200}]] -> {2, 4, 6},
Point[GeoPosition[{10.1, 200}]] -> {3, 5, 7}|>];
AbsoluteOptions[b, MetaInformation]

What I'm looking for is a way to add data internally at each Point and access the internal data for each Point for later use. Any idea?
Thanks,
Claudio Chaib