JSFiddle - React, Tailwind, and code Playground
HTML
<input type="hidden" id="_lat" value="123">
<input type="hidden" id="_lng" value="666">
JavaScript
var myLatLng = { lat: document.getElementById("_lat").value, lng: document.getElementById("_lng").value};
console.log(myLatLng);