The issue here is that the user wanted help with translating their custom fields.
Solution:
Our toolset forum wouldn't be the best place to get a solution for this , so I would recommend opening a ticket with our WPML team as they are better able to assist you with the translation issues. https://wpml.org/forums/forum/english-support/
Problem: I would like to display a Map that includes several "hotspots" as Markers, and also draw a route on the map.
Solution: You can create a custom Map View that includes Markers that represent each "hotspot". To draw a custom walking route on a Map, you can use the Google Maps Polyline API. Here's the example from the Google Maps API documentation, edited to use a map created in Toolset:
var mapid = 'map-1';
var map = WPViews.view_addon_maps.get_map(mapid);
var flightPlanCoordinates = [
{lat: 37.772, lng: -122.214},
{lat: 21.291, lng: -157.821},
{lat: -18.142, lng: 178.431},
{lat: -27.467, lng: 153.027}
];
var flightPath = new google.maps.Polyline({
path: flightPlanCoordinates,
geodesic: true,
strokeColor: '#FF0000',
strokeOpacity: 1.0,
strokeWeight: 2
});
flightPath.setMap(map);
Replace map-1 with the ID of your map created in Views. Wrap this code in a 'js_event_wpv_addon_maps_init_map_completed' event handler so it is fired when the map is ready. I provided a more complete example implementation in another ticket: https://toolset.com/forums/topic/add-lines-connecting-markers-in-a-google-map/#post-916035
This ticket creates the polyline using on the marker locations, but your line will be unrelated to the markers.
Use a repeating field group to create content for my new post type, but the console shows an error 500 in wp-admin/admin-ajax.php
Solution:
So there might some broken plugin file in your website, please check these in your website:
Delete the Toolset Form plugin + Types plugin of your website, and install the latest version of Toolset plugins, you can download them here: https://toolset.com/account/downloads/
In the version of Types plugin 3.0.2, we have fixed a custom field raw output mode problem, please try to upgrade Types plugin to the latest version, and test again.