Format:MapCoords

<style>

   @keyframes pulse {
       0% {
           transform: scale(1);
           opacity: 1;
       }
       50% {
           transform: scale(1.5);
           opacity: 0.5;
       }
       100% {
           transform: scale(1);
           opacity: 1;
       }
   }
   .animated-point {
       width: 10px;
       height: 10px;
       background-color: red;
       border-radius: 50%;
       position: absolute;
       animation: pulse 1.5s infinite;
   }

</style>

   <img src="{{{image}}}" alt="Annotated Image" style="width:100%; height:auto;">