3
私はconvertstringをlatlngにしたいと思いますstringが23.097278,72.446139であると仮定します。私は文字列を分割するときにlatlngに変換したいのですが、私が望むように結果を得ますが、latlngに変換すると、 centerPoint:(23.081295、72.49794399999996)、これまでにやったことは、以下の通りです。ionic: - 文字列をlatlngに変換して最後に数字を追加しますか?
temp="23.097278,72.446139";
let temp1 = temp.split(',');
let coordinatesLat = temp1[0];
let coordinatesLong = temp1[1];
console.log("temp1 : " +coordinatesLong);
let centerPoint = new google.maps.LatLng(coordinatesLat, coordinatesLong);
console.log("centerPoint : " +centerPoint);
ログに出力
temp1 : 72.497944
centerPoint : (23.081295, 72.49794399999996)
このコードを使用していません –