2
私はStyling WizardでGoogleマップの外観をカスタマイズしました。それは、私がやったJSONをコピーするように私に言ったが、私はそれをどこに実装するか分からないiOS Swiftプロジェクト。Googleマップのスタイル作成ウィザードを実装するJSON
どこに置くのか分かりませんか?
ありがとうございます!
mapView
GoogleMaps
オブジェクトスウィフト3.xのコード
do {
// Set the map style by passing the URL of the local file. Make sure style.json is present in your project
if let styleURL = Bundle.main.url(forResource: "style", withExtension: "json") {
mapView.mapStyle = try GMSMapStyle(contentsOfFileURL: styleURL)
} else {
print("Unable to find style.json")
}
} catch {
print("The style definition could not be loaded: \(error)")
}
リンクあなたが作成したスタイリッシュなマップを作成するために、コードのこの部分を使用することができます
これは素晴らしいです!どうもありがとうございます! – LinusGeffarth
あなたはそれをうまく実装しているので、Googleマップで[私の他の質問](http://stackoverflow.com/questions/40064779/google-maps-gmsmapview-on-custom-uiview)をチェックすることはできますか? @ LinusG。 – LinusGeffarth
私はそれに答えようとしました。それをチェックしてください –