Center a single marker

{exp:reinos_maps:html_header}

{exp:channel:entries limit="1"}
    {exp:reinos_maps:map width="100%" center:latlng="{maps_fieldtype_field:marker:n:latlng}" zoom="15"}
{/exp:channel:entries}

{exp:reinos_maps:html_footer}

Channel Form

{exp:channel:form id="maps_fieldtype_channel_form" channel="maps_fieldtype" return="maps/channel-form" include_assets="yes"}
   <input name="title" type="text">
   <input name="url_title" type="text">

   {field:maps_fieldtype}

   <input type="submit" value="Submit">
{/exp:channel:form}

Example Zoom

{exp:reinos_maps:html_header}

{exp:channel:entries entry_id="351"}
   {maps_fieldtype zoom="12"}
{/exp:channel:entries}

{exp:reinos_maps:html_footer}

Has marker check (conditional)

{exp:reinos_maps:html_header}

{exp:channel:entries limit="1"}
    {maps_field_extension:has:markers}
        ...
    {/maps_field_extension:has:markers}
{/exp:channel:entries}

{exp:reinos_maps:html_footer}

Marker loop with add_marker tag

{exp:reinos_maps:html_header}

{exp:channel:entries entry_id="3" dynamic="no"}
    {exp:reinos_maps:map fit_map="markers"}
        {maps_fieldtype:markers}
            {!-- YBecause we are using the add_marker tag from the maps module, you can do anything that is documented here --> https://docs.reinos.nl/maps/#map-markers --}
            {maps:add_marker latlng="{lat},{lng}"}
        {/maps_fieldtype:markers}
    {/exp:reinos_maps:map}
{/exp:channel:entries}

{exp:reinos_maps:html_footer}

Marker loop

{exp:reinos_maps:html_header}

{exp:channel:entries entry_id="351"}
   <ul>
   {maps_fieldtype:markers}
      <li>{title} : {lat},{lng}</li>
   {/maps_fieldtype:markers}
   </ul>
{/exp:channel:entries}

{exp:reinos_maps:html_footer}

Route based on the makers

{exp:reinos_maps:html_header}

{exp:reinos_maps:map
    width="100%"
    fit_map="route"
}
    {maps:add_route
        address:from="{your_custom_maps_field:route:from}"
        address:to="{your_custom_maps_field:route:to}"
        address:stops="{your_custom_maps_field:route:stops}"
    }
{/exp:reinos_maps:map}

{exp:reinos_maps:html_footer}

Simple Example

{exp:reinos_maps:html_header}

{exp:channel:entries entry_id="351"}
   {maps_fieldtype}
{/exp:channel:entries}

{exp:reinos_maps:html_footer}