diff --git a/android-marker-app-custom-style/.gitignore b/android-marker-app-custom-style/.gitignore
new file mode 100644
index 0000000..aa724b7
--- /dev/null
+++ b/android-marker-app-custom-style/.gitignore
@@ -0,0 +1,15 @@
+*.iml
+.gradle
+/local.properties
+/.idea/caches
+/.idea/libraries
+/.idea/modules.xml
+/.idea/workspace.xml
+/.idea/navEditor.xml
+/.idea/assetWizardSettings.xml
+.DS_Store
+/build
+/captures
+.externalNativeBuild
+.cxx
+local.properties
diff --git a/android-marker-app-custom-style/app/.gitignore b/android-marker-app-custom-style/app/.gitignore
new file mode 100644
index 0000000..42afabf
--- /dev/null
+++ b/android-marker-app-custom-style/app/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/build.gradle.kts b/android-marker-app-custom-style/app/build.gradle.kts
new file mode 100644
index 0000000..13ca19a
--- /dev/null
+++ b/android-marker-app-custom-style/app/build.gradle.kts
@@ -0,0 +1,61 @@
+plugins {
+ alias(libs.plugins.android.application)
+ alias(libs.plugins.kotlin.android)
+ alias(libs.plugins.kotlin.compose)
+}
+
+android {
+ namespace = "com.example.android_custom_style"
+ compileSdk = 36
+
+ defaultConfig {
+ applicationId = "com.example.android_custom_style"
+ minSdk = 24
+ targetSdk = 36
+ versionCode = 1
+ versionName = "1.0"
+
+ testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
+ }
+
+ buildTypes {
+ release {
+ isMinifyEnabled = false
+ proguardFiles(
+ getDefaultProguardFile("proguard-android-optimize.txt"),
+ "proguard-rules.pro"
+ )
+ }
+ }
+ compileOptions {
+ sourceCompatibility = JavaVersion.VERSION_11
+ targetCompatibility = JavaVersion.VERSION_11
+ }
+ kotlinOptions {
+ jvmTarget = "11"
+ }
+ buildFeatures {
+ compose = true
+ }
+}
+
+dependencies {
+
+ implementation(libs.androidx.core.ktx)
+ implementation(libs.androidx.lifecycle.runtime.ktx)
+ implementation(libs.androidx.activity.compose)
+ implementation(platform(libs.androidx.compose.bom))
+ implementation(libs.androidx.ui)
+ implementation(libs.androidx.ui.graphics)
+ implementation(libs.androidx.ui.tooling.preview)
+ implementation(libs.androidx.material3)
+ implementation("com.mapbox.maps:android-ndk27:11.16.6")
+ implementation("com.mapbox.extension:maps-compose-ndk27:11.16.6")
+ testImplementation(libs.junit)
+ androidTestImplementation(libs.androidx.junit)
+ androidTestImplementation(libs.androidx.espresso.core)
+ androidTestImplementation(platform(libs.androidx.compose.bom))
+ androidTestImplementation(libs.androidx.ui.test.junit4)
+ debugImplementation(libs.androidx.ui.tooling)
+ debugImplementation(libs.androidx.ui.test.manifest)
+}
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/proguard-rules.pro b/android-marker-app-custom-style/app/proguard-rules.pro
new file mode 100644
index 0000000..481bb43
--- /dev/null
+++ b/android-marker-app-custom-style/app/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/src/androidTest/java/com/example/android_custom_style/ExampleInstrumentedTest.kt b/android-marker-app-custom-style/app/src/androidTest/java/com/example/android_custom_style/ExampleInstrumentedTest.kt
new file mode 100644
index 0000000..9fe41e9
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/androidTest/java/com/example/android_custom_style/ExampleInstrumentedTest.kt
@@ -0,0 +1,24 @@
+package com.example.android_custom_style
+
+import androidx.test.platform.app.InstrumentationRegistry
+import androidx.test.ext.junit.runners.AndroidJUnit4
+
+import org.junit.Test
+import org.junit.runner.RunWith
+
+import org.junit.Assert.*
+
+/**
+ * Instrumented test, which will execute on an Android device.
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+@RunWith(AndroidJUnit4::class)
+class ExampleInstrumentedTest {
+ @Test
+ fun useAppContext() {
+ // Context of the app under test.
+ val appContext = InstrumentationRegistry.getInstrumentation().targetContext
+ assertEquals("com.example.android_custom_style", appContext.packageName)
+ }
+}
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/src/main/AndroidManifest.xml b/android-marker-app-custom-style/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..9ccaa87
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/main/AndroidManifest.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/src/main/java/com/example/android_custom_style/MainActivity.kt b/android-marker-app-custom-style/app/src/main/java/com/example/android_custom_style/MainActivity.kt
new file mode 100644
index 0000000..f859f39
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/main/java/com/example/android_custom_style/MainActivity.kt
@@ -0,0 +1,193 @@
+package com.example.android_custom_style
+
+import android.os.Bundle
+import androidx.activity.ComponentActivity
+import androidx.activity.compose.setContent
+import androidx.compose.foundation.background
+import androidx.compose.foundation.layout.Arrangement
+import androidx.compose.foundation.layout.Box
+import androidx.compose.foundation.layout.Column
+import androidx.compose.foundation.layout.Row
+import androidx.compose.foundation.layout.Spacer
+import androidx.compose.foundation.layout.fillMaxHeight
+import androidx.compose.foundation.layout.fillMaxSize
+import androidx.compose.foundation.layout.fillMaxWidth
+import androidx.compose.foundation.layout.padding
+import androidx.compose.foundation.shape.RoundedCornerShape
+import androidx.compose.material.icons.Icons
+import androidx.compose.material.icons.filled.Favorite
+import androidx.compose.material.icons.filled.Phone
+import androidx.compose.material.icons.filled.Place
+import androidx.compose.material.icons.filled.Star
+import androidx.compose.material3.ExperimentalMaterial3Api
+import androidx.compose.material3.Icon
+import androidx.compose.material3.MaterialTheme
+import androidx.compose.material3.ModalBottomSheet
+import androidx.compose.material3.Text
+import androidx.compose.material3.rememberModalBottomSheetState
+import androidx.compose.runtime.getValue
+import androidx.compose.runtime.mutableStateOf
+import androidx.compose.runtime.remember
+import androidx.compose.runtime.setValue
+import androidx.compose.ui.Alignment
+import androidx.compose.ui.Modifier
+import androidx.compose.ui.draw.clip
+import androidx.compose.ui.graphics.Color
+import androidx.compose.ui.unit.dp
+import com.mapbox.geojson.Point
+import com.mapbox.maps.extension.compose.MapboxMap
+import com.mapbox.maps.extension.compose.animation.viewport.rememberMapViewportState
+import com.mapbox.maps.extension.compose.style.MapStyle
+import com.mapbox.maps.extension.compose.style.rememberStyleState
+import org.json.JSONObject
+import kotlin.math.roundToInt
+
+public class MainActivity : ComponentActivity() {
+
+ val locationName = mutableStateOf("none")
+ val locationAddress = mutableStateOf("none")
+ val locationPhoneNumber = mutableStateOf("none")
+ val locationRating = mutableStateOf("none")
+
+ @OptIn(ExperimentalMaterial3Api::class)
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContent {
+ val sheetState = rememberModalBottomSheetState()
+ var showBottomSheet by remember { mutableStateOf(false) }
+
+ fun grabPOIData(properties: JSONObject)
+ {
+ locationName.value = properties.get("storeName").toString()
+ locationAddress.value = properties.get("address").toString() + ", " + properties.get("city").toString() + " " + properties.get("postalCode").toString()
+ locationPhoneNumber.value = properties.get("phoneFormatted").toString()
+ locationRating.value = properties.get("rating").toString()
+
+ showBottomSheet = true
+ }
+
+ MapboxMap(
+ Modifier.fillMaxSize(),
+ scaleBar = {},
+ style = {
+ MapStyle(
+ style = "mapbox://styles/examples/cm37hh1nx017n01qk2hngebzt",
+ styleState = rememberStyleState {
+ styleInteractionsState
+ .onLayerClicked(id = "dog-groomers-3o4sdb") { feature, context ->
+ grabPOIData(feature.properties)
+ true
+ }
+ .onLayerClicked(id = "dog-groomers-boston-marker") { feature, context ->
+ grabPOIData(feature.properties)
+ true
+ }
+ }
+ )
+ },
+ mapViewportState = rememberMapViewportState {
+ setCameraOptions {
+ zoom(7.0)
+ center(Point.fromLngLat(-71.09290,42.34622))
+ pitch(0.0)
+ bearing(0.0)
+ }
+ },
+ )
+
+ // Adds UI element with call to action and app title text
+ Column(
+ modifier = Modifier
+ .fillMaxWidth(0.5f)
+ .fillMaxHeight(0.15f)
+ .padding(16.dp),
+ verticalArrangement = Arrangement.SpaceEvenly)
+ {
+ Box(
+ modifier = Modifier
+ .fillMaxWidth()
+ .fillMaxHeight(0.3f)
+ .clip(shape = RoundedCornerShape(5.dp))
+ .padding(1.dp)
+ .background(Color.White)
+ )
+ {
+ Row(modifier = Modifier.padding(1.dp))
+ {
+ Icon(Icons.Filled.Favorite, "", tint = Color.Red, modifier = Modifier.padding(2.dp))
+ Text("Pet Spa Finder", style = MaterialTheme.typography.titleMedium, modifier = Modifier.padding(8.dp,1.dp,1.dp,1.dp))
+ }
+ }
+ Box(
+ modifier = Modifier
+ .fillMaxWidth()
+ .fillMaxHeight(0.7f)
+ .padding(1.dp)
+ .clip(shape = RoundedCornerShape(5.dp))
+ .background(Color.White)
+ )
+ {
+ Row(modifier = Modifier.padding(1.dp))
+ {
+ Text("Click a marker for more information.", style = MaterialTheme.typography.bodyMedium, modifier = Modifier.padding(5.dp,2.dp))
+ }
+ }
+ }
+
+ // Checks if a marker has been tapped, if so will open the ModalBottomSheet
+ if (showBottomSheet) {
+ ModalBottomSheet(
+ onDismissRequest = {
+ showBottomSheet = false
+ },
+ sheetState = sheetState
+ ) {
+ // Aligns the contents of the ModalBottomSheet for better readability
+ Column(
+ modifier = Modifier.fillMaxWidth().padding(25.dp,0.dp,0.dp,0.dp),
+ horizontalAlignment = Alignment.Start
+ ) {
+ // These values update when the marker is selected by querying the GeoJSON
+ // for the related data, and then updating the global variables so the text prints correctly here.
+ Text(
+ text = locationName.value,
+ style = MaterialTheme.typography.displaySmall,
+ )
+
+ Row(verticalAlignment = Alignment.CenterVertically, modifier = Modifier.fillMaxHeight(0.04f))
+ {
+ Text("Rating: ", style = MaterialTheme.typography.bodyMedium)
+ val roundedRating = locationRating.value.toFloat().roundToInt()
+ for (i in 0..roundedRating-1){//locationRating.value.toInt()) {
+ Icon(Icons.Filled.Star,"",tint = Color.Red)
+ }
+ }
+
+ Spacer(modifier = Modifier.padding(vertical = 10.dp))
+
+ Row(verticalAlignment = Alignment.CenterVertically, modifier = Modifier.fillMaxHeight(0.04f))
+ {
+ Icon(Icons.Filled.Place, "", tint = Color.Red, modifier = Modifier.padding(2.dp))
+ Text(locationAddress.value, style = MaterialTheme.typography.bodyLarge, modifier = Modifier.padding(1.dp))
+ }
+ Row(verticalAlignment = Alignment.CenterVertically, modifier = Modifier.fillMaxHeight(0.04f))
+ {
+ Icon(Icons.Filled.Phone, "", tint = Color.Red, modifier = Modifier.padding(3.dp))
+ Text(
+ locationPhoneNumber.value,
+ style = MaterialTheme.typography.bodyLarge
+ )
+ }
+
+ // Adds padding at the bottom of the ModalBottomSheet
+ Spacer(modifier = Modifier.padding(vertical = 50.dp))
+
+ }
+
+ }
+ }
+
+ }
+ }
+
+}
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/src/main/java/com/example/android_custom_style/ui/theme/Color.kt b/android-marker-app-custom-style/app/src/main/java/com/example/android_custom_style/ui/theme/Color.kt
new file mode 100644
index 0000000..5c793f7
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/main/java/com/example/android_custom_style/ui/theme/Color.kt
@@ -0,0 +1,11 @@
+package com.example.android_custom_style.ui.theme
+
+import androidx.compose.ui.graphics.Color
+
+val Purple80 = Color(0xFFD0BCFF)
+val PurpleGrey80 = Color(0xFFCCC2DC)
+val Pink80 = Color(0xFFEFB8C8)
+
+val Purple40 = Color(0xFF6650a4)
+val PurpleGrey40 = Color(0xFF625b71)
+val Pink40 = Color(0xFF7D5260)
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/src/main/java/com/example/android_custom_style/ui/theme/Theme.kt b/android-marker-app-custom-style/app/src/main/java/com/example/android_custom_style/ui/theme/Theme.kt
new file mode 100644
index 0000000..ac027d0
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/main/java/com/example/android_custom_style/ui/theme/Theme.kt
@@ -0,0 +1,58 @@
+package com.example.android_custom_style.ui.theme
+
+import android.app.Activity
+import android.os.Build
+import androidx.compose.foundation.isSystemInDarkTheme
+import androidx.compose.material3.MaterialTheme
+import androidx.compose.material3.darkColorScheme
+import androidx.compose.material3.dynamicDarkColorScheme
+import androidx.compose.material3.dynamicLightColorScheme
+import androidx.compose.material3.lightColorScheme
+import androidx.compose.runtime.Composable
+import androidx.compose.ui.platform.LocalContext
+
+private val DarkColorScheme = darkColorScheme(
+ primary = Purple80,
+ secondary = PurpleGrey80,
+ tertiary = Pink80
+)
+
+private val LightColorScheme = lightColorScheme(
+ primary = Purple40,
+ secondary = PurpleGrey40,
+ tertiary = Pink40
+
+ /* Other default colors to override
+ background = Color(0xFFFFFBFE),
+ surface = Color(0xFFFFFBFE),
+ onPrimary = Color.White,
+ onSecondary = Color.White,
+ onTertiary = Color.White,
+ onBackground = Color(0xFF1C1B1F),
+ onSurface = Color(0xFF1C1B1F),
+ */
+)
+
+@Composable
+fun AndroidcustomstyleTheme(
+ darkTheme: Boolean = isSystemInDarkTheme(),
+ // Dynamic color is available on Android 12+
+ dynamicColor: Boolean = true,
+ content: @Composable () -> Unit
+) {
+ val colorScheme = when {
+ dynamicColor && Build.VERSION.SDK_INT >= Build.VERSION_CODES.S -> {
+ val context = LocalContext.current
+ if (darkTheme) dynamicDarkColorScheme(context) else dynamicLightColorScheme(context)
+ }
+
+ darkTheme -> DarkColorScheme
+ else -> LightColorScheme
+ }
+
+ MaterialTheme(
+ colorScheme = colorScheme,
+ typography = Typography,
+ content = content
+ )
+}
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/src/main/java/com/example/android_custom_style/ui/theme/Type.kt b/android-marker-app-custom-style/app/src/main/java/com/example/android_custom_style/ui/theme/Type.kt
new file mode 100644
index 0000000..fd7d832
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/main/java/com/example/android_custom_style/ui/theme/Type.kt
@@ -0,0 +1,34 @@
+package com.example.android_custom_style.ui.theme
+
+import androidx.compose.material3.Typography
+import androidx.compose.ui.text.TextStyle
+import androidx.compose.ui.text.font.FontFamily
+import androidx.compose.ui.text.font.FontWeight
+import androidx.compose.ui.unit.sp
+
+// Set of Material typography styles to start with
+val Typography = Typography(
+ bodyLarge = TextStyle(
+ fontFamily = FontFamily.Default,
+ fontWeight = FontWeight.Normal,
+ fontSize = 16.sp,
+ lineHeight = 24.sp,
+ letterSpacing = 0.5.sp
+ )
+ /* Other default text styles to override
+ titleLarge = TextStyle(
+ fontFamily = FontFamily.Default,
+ fontWeight = FontWeight.Normal,
+ fontSize = 22.sp,
+ lineHeight = 28.sp,
+ letterSpacing = 0.sp
+ ),
+ labelSmall = TextStyle(
+ fontFamily = FontFamily.Default,
+ fontWeight = FontWeight.Medium,
+ fontSize = 11.sp,
+ lineHeight = 16.sp,
+ letterSpacing = 0.5.sp
+ )
+ */
+)
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/src/main/res/drawable/ic_launcher_background.xml b/android-marker-app-custom-style/app/src/main/res/drawable/ic_launcher_background.xml
new file mode 100644
index 0000000..07d5da9
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/main/res/drawable/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android-marker-app-custom-style/app/src/main/res/drawable/ic_launcher_foreground.xml b/android-marker-app-custom-style/app/src/main/res/drawable/ic_launcher_foreground.xml
new file mode 100644
index 0000000..2b068d1
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/main/res/drawable/ic_launcher_foreground.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/android-marker-app-custom-style/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 0000000..6f3b755
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/android-marker-app-custom-style/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 0000000..6f3b755
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/android-marker-app-custom-style/app/src/main/res/mipmap-hdpi/ic_launcher.webp
new file mode 100644
index 0000000..c209e78
Binary files /dev/null and b/android-marker-app-custom-style/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ
diff --git a/android-marker-app-custom-style/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/android-marker-app-custom-style/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..b2dfe3d
Binary files /dev/null and b/android-marker-app-custom-style/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ
diff --git a/android-marker-app-custom-style/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/android-marker-app-custom-style/app/src/main/res/mipmap-mdpi/ic_launcher.webp
new file mode 100644
index 0000000..4f0f1d6
Binary files /dev/null and b/android-marker-app-custom-style/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ
diff --git a/android-marker-app-custom-style/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/android-marker-app-custom-style/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..62b611d
Binary files /dev/null and b/android-marker-app-custom-style/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ
diff --git a/android-marker-app-custom-style/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/android-marker-app-custom-style/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
new file mode 100644
index 0000000..948a307
Binary files /dev/null and b/android-marker-app-custom-style/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ
diff --git a/android-marker-app-custom-style/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/android-marker-app-custom-style/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..1b9a695
Binary files /dev/null and b/android-marker-app-custom-style/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ
diff --git a/android-marker-app-custom-style/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/android-marker-app-custom-style/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
new file mode 100644
index 0000000..28d4b77
Binary files /dev/null and b/android-marker-app-custom-style/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ
diff --git a/android-marker-app-custom-style/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/android-marker-app-custom-style/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..9287f50
Binary files /dev/null and b/android-marker-app-custom-style/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ
diff --git a/android-marker-app-custom-style/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/android-marker-app-custom-style/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
new file mode 100644
index 0000000..aa7d642
Binary files /dev/null and b/android-marker-app-custom-style/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ
diff --git a/android-marker-app-custom-style/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/android-marker-app-custom-style/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..9126ae3
Binary files /dev/null and b/android-marker-app-custom-style/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ
diff --git a/android-marker-app-custom-style/app/src/main/res/values/colors.xml b/android-marker-app-custom-style/app/src/main/res/values/colors.xml
new file mode 100644
index 0000000..f8c6127
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/main/res/values/colors.xml
@@ -0,0 +1,10 @@
+
+
+ #FFBB86FC
+ #FF6200EE
+ #FF3700B3
+ #FF03DAC5
+ #FF018786
+ #FF000000
+ #FFFFFFFF
+
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/src/main/res/values/strings.xml b/android-marker-app-custom-style/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000..20d22a4
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+
+ android-custom-style
+
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/src/main/res/values/themes.xml b/android-marker-app-custom-style/app/src/main/res/values/themes.xml
new file mode 100644
index 0000000..3c688f4
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/main/res/values/themes.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/src/main/res/xml/backup_rules.xml b/android-marker-app-custom-style/app/src/main/res/xml/backup_rules.xml
new file mode 100644
index 0000000..4df9255
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/main/res/xml/backup_rules.xml
@@ -0,0 +1,13 @@
+
+
+
+
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/src/main/res/xml/data_extraction_rules.xml b/android-marker-app-custom-style/app/src/main/res/xml/data_extraction_rules.xml
new file mode 100644
index 0000000..9ee9997
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/main/res/xml/data_extraction_rules.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android-marker-app-custom-style/app/src/test/java/com/example/android_custom_style/ExampleUnitTest.kt b/android-marker-app-custom-style/app/src/test/java/com/example/android_custom_style/ExampleUnitTest.kt
new file mode 100644
index 0000000..1b52cd5
--- /dev/null
+++ b/android-marker-app-custom-style/app/src/test/java/com/example/android_custom_style/ExampleUnitTest.kt
@@ -0,0 +1,17 @@
+package com.example.android_custom_style
+
+import org.junit.Test
+
+import org.junit.Assert.*
+
+/**
+ * Example local unit test, which will execute on the development machine (host).
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+class ExampleUnitTest {
+ @Test
+ fun addition_isCorrect() {
+ assertEquals(4, 2 + 2)
+ }
+}
\ No newline at end of file
diff --git a/android-marker-app-custom-style/build.gradle.kts b/android-marker-app-custom-style/build.gradle.kts
new file mode 100644
index 0000000..952b930
--- /dev/null
+++ b/android-marker-app-custom-style/build.gradle.kts
@@ -0,0 +1,6 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+plugins {
+ alias(libs.plugins.android.application) apply false
+ alias(libs.plugins.kotlin.android) apply false
+ alias(libs.plugins.kotlin.compose) apply false
+}
\ No newline at end of file
diff --git a/android-marker-app-custom-style/gradle.properties b/android-marker-app-custom-style/gradle.properties
new file mode 100644
index 0000000..20e2a01
--- /dev/null
+++ b/android-marker-app-custom-style/gradle.properties
@@ -0,0 +1,23 @@
+# Project-wide Gradle settings.
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. For more details, visit
+# https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects
+# org.gradle.parallel=true
+# AndroidX package structure to make it clearer which packages are bundled with the
+# Android operating system, and which are packaged with your app's APK
+# https://developer.android.com/topic/libraries/support-library/androidx-rn
+android.useAndroidX=true
+# Kotlin code style for this project: "official" or "obsolete":
+kotlin.code.style=official
+# Enables namespacing of each library's R class so that its R class includes only the
+# resources declared in the library itself and none from the library's dependencies,
+# thereby reducing the size of the R class for that library
+android.nonTransitiveRClass=true
\ No newline at end of file
diff --git a/android-marker-app-custom-style/gradle/libs.versions.toml b/android-marker-app-custom-style/gradle/libs.versions.toml
new file mode 100644
index 0000000..01488a8
--- /dev/null
+++ b/android-marker-app-custom-style/gradle/libs.versions.toml
@@ -0,0 +1,32 @@
+[versions]
+agp = "8.12.3"
+kotlin = "2.0.21"
+coreKtx = "1.17.0"
+junit = "4.13.2"
+junitVersion = "1.3.0"
+espressoCore = "3.7.0"
+lifecycleRuntimeKtx = "2.10.0"
+activityCompose = "1.12.0"
+composeBom = "2024.09.00"
+
+[libraries]
+androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
+junit = { group = "junit", name = "junit", version.ref = "junit" }
+androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
+androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
+androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
+androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
+androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
+androidx-ui = { group = "androidx.compose.ui", name = "ui" }
+androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
+androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
+androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
+androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
+androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
+androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
+
+[plugins]
+android-application = { id = "com.android.application", version.ref = "agp" }
+kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
+kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
+
diff --git a/android-marker-app-custom-style/gradle/wrapper/gradle-wrapper.jar b/android-marker-app-custom-style/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..e708b1c
Binary files /dev/null and b/android-marker-app-custom-style/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/android-marker-app-custom-style/gradle/wrapper/gradle-wrapper.properties b/android-marker-app-custom-style/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..ef40057
--- /dev/null
+++ b/android-marker-app-custom-style/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Thu Dec 04 10:48:44 EST 2025
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
diff --git a/android-marker-app-custom-style/gradlew b/android-marker-app-custom-style/gradlew
new file mode 100755
index 0000000..4f906e0
--- /dev/null
+++ b/android-marker-app-custom-style/gradlew
@@ -0,0 +1,185 @@
+#!/usr/bin/env sh
+
+#
+# Copyright 2015 the original author or authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=`expr $i + 1`
+ done
+ case $i in
+ 0) set -- ;;
+ 1) set -- "$args0" ;;
+ 2) set -- "$args0" "$args1" ;;
+ 3) set -- "$args0" "$args1" "$args2" ;;
+ 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=`save "$@"`
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+
+exec "$JAVACMD" "$@"
diff --git a/android-marker-app-custom-style/gradlew.bat b/android-marker-app-custom-style/gradlew.bat
new file mode 100644
index 0000000..ac1b06f
--- /dev/null
+++ b/android-marker-app-custom-style/gradlew.bat
@@ -0,0 +1,89 @@
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@rem See the License for the specific language governing permissions and
+@rem limitations under the License.
+@rem
+
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/android-marker-app-custom-style/settings.gradle.kts b/android-marker-app-custom-style/settings.gradle.kts
new file mode 100644
index 0000000..4492b62
--- /dev/null
+++ b/android-marker-app-custom-style/settings.gradle.kts
@@ -0,0 +1,28 @@
+pluginManagement {
+ repositories {
+ google {
+ content {
+ includeGroupByRegex("com\\.android.*")
+ includeGroupByRegex("com\\.google.*")
+ includeGroupByRegex("androidx.*")
+ }
+ }
+ mavenCentral()
+ gradlePluginPortal()
+ }
+}
+dependencyResolutionManagement {
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
+ repositories {
+ google()
+ mavenCentral()
+ // Mapbox Maven repository
+ maven {
+ url = uri("https://api.mapbox.com/downloads/v2/releases/maven")
+ }
+
+ }
+}
+
+rootProject.name = "android-custom-style"
+include(":app")
diff --git a/ios-marker-app-custom-style/iOSCustomStyle.xcodeproj/project.pbxproj b/ios-marker-app-custom-style/iOSCustomStyle.xcodeproj/project.pbxproj
new file mode 100644
index 0000000..4c6b718
--- /dev/null
+++ b/ios-marker-app-custom-style/iOSCustomStyle.xcodeproj/project.pbxproj
@@ -0,0 +1,606 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 77;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 88D81A662EE1E2FB00647CB4 /* MapboxMaps in Frameworks */ = {isa = PBXBuildFile; productRef = 88D81A652EE1E2FB00647CB4 /* MapboxMaps */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXContainerItemProxy section */
+ 88D81A462EE1E2AA00647CB4 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 88D81A302EE1E2A900647CB4 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 88D81A372EE1E2A900647CB4;
+ remoteInfo = iOSCustomStyle;
+ };
+ 88D81A502EE1E2AA00647CB4 /* PBXContainerItemProxy */ = {
+ isa = PBXContainerItemProxy;
+ containerPortal = 88D81A302EE1E2A900647CB4 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 88D81A372EE1E2A900647CB4;
+ remoteInfo = iOSCustomStyle;
+ };
+/* End PBXContainerItemProxy section */
+
+/* Begin PBXFileReference section */
+ 88D81A382EE1E2A900647CB4 /* iOSCustomStyle.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = iOSCustomStyle.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 88D81A452EE1E2AA00647CB4 /* iOSCustomStyleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = iOSCustomStyleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
+ 88D81A4F2EE1E2AA00647CB4 /* iOSCustomStyleUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = iOSCustomStyleUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
+/* End PBXFileReference section */
+
+/* Begin PBXFileSystemSynchronizedBuildFileExceptionSet section */
+ 88D81A632EE1E2DC00647CB4 /* Exceptions for "iOSCustomStyle" folder in "iOSCustomStyle" target */ = {
+ isa = PBXFileSystemSynchronizedBuildFileExceptionSet;
+ membershipExceptions = (
+ Info.plist,
+ );
+ target = 88D81A372EE1E2A900647CB4 /* iOSCustomStyle */;
+ };
+/* End PBXFileSystemSynchronizedBuildFileExceptionSet section */
+
+/* Begin PBXFileSystemSynchronizedRootGroup section */
+ 88D81A3A2EE1E2A900647CB4 /* iOSCustomStyle */ = {
+ isa = PBXFileSystemSynchronizedRootGroup;
+ exceptions = (
+ 88D81A632EE1E2DC00647CB4 /* Exceptions for "iOSCustomStyle" folder in "iOSCustomStyle" target */,
+ );
+ path = iOSCustomStyle;
+ sourceTree = "";
+ };
+ 88D81A482EE1E2AA00647CB4 /* iOSCustomStyleTests */ = {
+ isa = PBXFileSystemSynchronizedRootGroup;
+ path = iOSCustomStyleTests;
+ sourceTree = "";
+ };
+ 88D81A522EE1E2AA00647CB4 /* iOSCustomStyleUITests */ = {
+ isa = PBXFileSystemSynchronizedRootGroup;
+ path = iOSCustomStyleUITests;
+ sourceTree = "";
+ };
+/* End PBXFileSystemSynchronizedRootGroup section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 88D81A352EE1E2A900647CB4 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 88D81A662EE1E2FB00647CB4 /* MapboxMaps in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 88D81A422EE1E2AA00647CB4 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 88D81A4C2EE1E2AA00647CB4 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 88D81A2F2EE1E2A900647CB4 = {
+ isa = PBXGroup;
+ children = (
+ 88D81A3A2EE1E2A900647CB4 /* iOSCustomStyle */,
+ 88D81A482EE1E2AA00647CB4 /* iOSCustomStyleTests */,
+ 88D81A522EE1E2AA00647CB4 /* iOSCustomStyleUITests */,
+ 88D81A392EE1E2A900647CB4 /* Products */,
+ );
+ sourceTree = "";
+ };
+ 88D81A392EE1E2A900647CB4 /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 88D81A382EE1E2A900647CB4 /* iOSCustomStyle.app */,
+ 88D81A452EE1E2AA00647CB4 /* iOSCustomStyleTests.xctest */,
+ 88D81A4F2EE1E2AA00647CB4 /* iOSCustomStyleUITests.xctest */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 88D81A372EE1E2A900647CB4 /* iOSCustomStyle */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 88D81A592EE1E2AA00647CB4 /* Build configuration list for PBXNativeTarget "iOSCustomStyle" */;
+ buildPhases = (
+ 88D81A342EE1E2A900647CB4 /* Sources */,
+ 88D81A352EE1E2A900647CB4 /* Frameworks */,
+ 88D81A362EE1E2A900647CB4 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ fileSystemSynchronizedGroups = (
+ 88D81A3A2EE1E2A900647CB4 /* iOSCustomStyle */,
+ );
+ name = iOSCustomStyle;
+ packageProductDependencies = (
+ 88D81A652EE1E2FB00647CB4 /* MapboxMaps */,
+ );
+ productName = iOSCustomStyle;
+ productReference = 88D81A382EE1E2A900647CB4 /* iOSCustomStyle.app */;
+ productType = "com.apple.product-type.application";
+ };
+ 88D81A442EE1E2AA00647CB4 /* iOSCustomStyleTests */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 88D81A5C2EE1E2AA00647CB4 /* Build configuration list for PBXNativeTarget "iOSCustomStyleTests" */;
+ buildPhases = (
+ 88D81A412EE1E2AA00647CB4 /* Sources */,
+ 88D81A422EE1E2AA00647CB4 /* Frameworks */,
+ 88D81A432EE1E2AA00647CB4 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 88D81A472EE1E2AA00647CB4 /* PBXTargetDependency */,
+ );
+ fileSystemSynchronizedGroups = (
+ 88D81A482EE1E2AA00647CB4 /* iOSCustomStyleTests */,
+ );
+ name = iOSCustomStyleTests;
+ packageProductDependencies = (
+ );
+ productName = iOSCustomStyleTests;
+ productReference = 88D81A452EE1E2AA00647CB4 /* iOSCustomStyleTests.xctest */;
+ productType = "com.apple.product-type.bundle.unit-test";
+ };
+ 88D81A4E2EE1E2AA00647CB4 /* iOSCustomStyleUITests */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 88D81A5F2EE1E2AA00647CB4 /* Build configuration list for PBXNativeTarget "iOSCustomStyleUITests" */;
+ buildPhases = (
+ 88D81A4B2EE1E2AA00647CB4 /* Sources */,
+ 88D81A4C2EE1E2AA00647CB4 /* Frameworks */,
+ 88D81A4D2EE1E2AA00647CB4 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 88D81A512EE1E2AA00647CB4 /* PBXTargetDependency */,
+ );
+ fileSystemSynchronizedGroups = (
+ 88D81A522EE1E2AA00647CB4 /* iOSCustomStyleUITests */,
+ );
+ name = iOSCustomStyleUITests;
+ packageProductDependencies = (
+ );
+ productName = iOSCustomStyleUITests;
+ productReference = 88D81A4F2EE1E2AA00647CB4 /* iOSCustomStyleUITests.xctest */;
+ productType = "com.apple.product-type.bundle.ui-testing";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ 88D81A302EE1E2A900647CB4 /* Project object */ = {
+ isa = PBXProject;
+ attributes = {
+ BuildIndependentTargetsInParallel = 1;
+ LastSwiftUpdateCheck = 1640;
+ LastUpgradeCheck = 1640;
+ TargetAttributes = {
+ 88D81A372EE1E2A900647CB4 = {
+ CreatedOnToolsVersion = 16.4;
+ };
+ 88D81A442EE1E2AA00647CB4 = {
+ CreatedOnToolsVersion = 16.4;
+ TestTargetID = 88D81A372EE1E2A900647CB4;
+ };
+ 88D81A4E2EE1E2AA00647CB4 = {
+ CreatedOnToolsVersion = 16.4;
+ TestTargetID = 88D81A372EE1E2A900647CB4;
+ };
+ };
+ };
+ buildConfigurationList = 88D81A332EE1E2A900647CB4 /* Build configuration list for PBXProject "iOSCustomStyle" */;
+ developmentRegion = en;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ en,
+ Base,
+ );
+ mainGroup = 88D81A2F2EE1E2A900647CB4;
+ minimizedProjectReferenceProxies = 1;
+ packageReferences = (
+ 88D81A642EE1E2FB00647CB4 /* XCRemoteSwiftPackageReference "mapbox-maps-ios" */,
+ );
+ preferredProjectObjectVersion = 77;
+ productRefGroup = 88D81A392EE1E2A900647CB4 /* Products */;
+ projectDirPath = "";
+ projectRoot = "";
+ targets = (
+ 88D81A372EE1E2A900647CB4 /* iOSCustomStyle */,
+ 88D81A442EE1E2AA00647CB4 /* iOSCustomStyleTests */,
+ 88D81A4E2EE1E2AA00647CB4 /* iOSCustomStyleUITests */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 88D81A362EE1E2A900647CB4 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 88D81A432EE1E2AA00647CB4 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 88D81A4D2EE1E2AA00647CB4 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 88D81A342EE1E2A900647CB4 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 88D81A412EE1E2AA00647CB4 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 88D81A4B2EE1E2AA00647CB4 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXTargetDependency section */
+ 88D81A472EE1E2AA00647CB4 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = 88D81A372EE1E2A900647CB4 /* iOSCustomStyle */;
+ targetProxy = 88D81A462EE1E2AA00647CB4 /* PBXContainerItemProxy */;
+ };
+ 88D81A512EE1E2AA00647CB4 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = 88D81A372EE1E2A900647CB4 /* iOSCustomStyle */;
+ targetProxy = 88D81A502EE1E2AA00647CB4 /* PBXContainerItemProxy */;
+ };
+/* End PBXTargetDependency section */
+
+/* Begin XCBuildConfiguration section */
+ 88D81A572EE1E2AA00647CB4 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_ENABLE_OBJC_WEAK = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = dwarf;
+ DEVELOPMENT_TEAM = YG447GDQP6;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu17;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 18.5;
+ LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
+ MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
+ MTL_FAST_MATH = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ SDKROOT = iphoneos;
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ };
+ name = Debug;
+ };
+ 88D81A582EE1E2AA00647CB4 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_ENABLE_OBJC_WEAK = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ DEVELOPMENT_TEAM = YG447GDQP6;
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu17;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 18.5;
+ LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ MTL_FAST_MATH = YES;
+ SDKROOT = iphoneos;
+ SWIFT_COMPILATION_MODE = wholemodule;
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+ 88D81A5A2EE1E2AA00647CB4 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ DEVELOPMENT_TEAM = YG447GDQP6;
+ ENABLE_PREVIEWS = YES;
+ GENERATE_INFOPLIST_FILE = YES;
+ INFOPLIST_FILE = iOSCustomStyle/Info.plist;
+ INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
+ INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
+ INFOPLIST_KEY_UILaunchScreen_Generation = YES;
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = emily.iOSCustomStyle;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_EMIT_LOC_STRINGS = YES;
+ SWIFT_VERSION = 5.0;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ };
+ name = Debug;
+ };
+ 88D81A5B2EE1E2AA00647CB4 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ DEVELOPMENT_TEAM = YG447GDQP6;
+ ENABLE_PREVIEWS = YES;
+ GENERATE_INFOPLIST_FILE = YES;
+ INFOPLIST_FILE = iOSCustomStyle/Info.plist;
+ INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
+ INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
+ INFOPLIST_KEY_UILaunchScreen_Generation = YES;
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = emily.iOSCustomStyle;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_EMIT_LOC_STRINGS = YES;
+ SWIFT_VERSION = 5.0;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ };
+ name = Release;
+ };
+ 88D81A5D2EE1E2AA00647CB4 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ DEVELOPMENT_TEAM = YG447GDQP6;
+ GENERATE_INFOPLIST_FILE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 18.5;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = emily.iOSCustomStyleTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_EMIT_LOC_STRINGS = NO;
+ SWIFT_VERSION = 5.0;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/iOSCustomStyle.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/iOSCustomStyle";
+ };
+ name = Debug;
+ };
+ 88D81A5E2EE1E2AA00647CB4 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ DEVELOPMENT_TEAM = YG447GDQP6;
+ GENERATE_INFOPLIST_FILE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 18.5;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = emily.iOSCustomStyleTests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_EMIT_LOC_STRINGS = NO;
+ SWIFT_VERSION = 5.0;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/iOSCustomStyle.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/iOSCustomStyle";
+ };
+ name = Release;
+ };
+ 88D81A602EE1E2AA00647CB4 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ DEVELOPMENT_TEAM = YG447GDQP6;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = emily.iOSCustomStyleUITests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_EMIT_LOC_STRINGS = NO;
+ SWIFT_VERSION = 5.0;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ TEST_TARGET_NAME = iOSCustomStyle;
+ };
+ name = Debug;
+ };
+ 88D81A612EE1E2AA00647CB4 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 1;
+ DEVELOPMENT_TEAM = YG447GDQP6;
+ GENERATE_INFOPLIST_FILE = YES;
+ MARKETING_VERSION = 1.0;
+ PRODUCT_BUNDLE_IDENTIFIER = emily.iOSCustomStyleUITests;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_EMIT_LOC_STRINGS = NO;
+ SWIFT_VERSION = 5.0;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ TEST_TARGET_NAME = iOSCustomStyle;
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 88D81A332EE1E2A900647CB4 /* Build configuration list for PBXProject "iOSCustomStyle" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 88D81A572EE1E2AA00647CB4 /* Debug */,
+ 88D81A582EE1E2AA00647CB4 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 88D81A592EE1E2AA00647CB4 /* Build configuration list for PBXNativeTarget "iOSCustomStyle" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 88D81A5A2EE1E2AA00647CB4 /* Debug */,
+ 88D81A5B2EE1E2AA00647CB4 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 88D81A5C2EE1E2AA00647CB4 /* Build configuration list for PBXNativeTarget "iOSCustomStyleTests" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 88D81A5D2EE1E2AA00647CB4 /* Debug */,
+ 88D81A5E2EE1E2AA00647CB4 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 88D81A5F2EE1E2AA00647CB4 /* Build configuration list for PBXNativeTarget "iOSCustomStyleUITests" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 88D81A602EE1E2AA00647CB4 /* Debug */,
+ 88D81A612EE1E2AA00647CB4 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+
+/* Begin XCRemoteSwiftPackageReference section */
+ 88D81A642EE1E2FB00647CB4 /* XCRemoteSwiftPackageReference "mapbox-maps-ios" */ = {
+ isa = XCRemoteSwiftPackageReference;
+ repositoryURL = "https://github.com/mapbox/mapbox-maps-ios.git";
+ requirement = {
+ kind = upToNextMajorVersion;
+ minimumVersion = 11.0.0;
+ };
+ };
+/* End XCRemoteSwiftPackageReference section */
+
+/* Begin XCSwiftPackageProductDependency section */
+ 88D81A652EE1E2FB00647CB4 /* MapboxMaps */ = {
+ isa = XCSwiftPackageProductDependency;
+ package = 88D81A642EE1E2FB00647CB4 /* XCRemoteSwiftPackageReference "mapbox-maps-ios" */;
+ productName = MapboxMaps;
+ };
+/* End XCSwiftPackageProductDependency section */
+ };
+ rootObject = 88D81A302EE1E2A900647CB4 /* Project object */;
+}
diff --git a/ios-marker-app-custom-style/iOSCustomStyle.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios-marker-app-custom-style/iOSCustomStyle.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..919434a
--- /dev/null
+++ b/ios-marker-app-custom-style/iOSCustomStyle.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/ios-marker-app-custom-style/iOSCustomStyle/Assets.xcassets/AccentColor.colorset/Contents.json b/ios-marker-app-custom-style/iOSCustomStyle/Assets.xcassets/AccentColor.colorset/Contents.json
new file mode 100644
index 0000000..eb87897
--- /dev/null
+++ b/ios-marker-app-custom-style/iOSCustomStyle/Assets.xcassets/AccentColor.colorset/Contents.json
@@ -0,0 +1,11 @@
+{
+ "colors" : [
+ {
+ "idiom" : "universal"
+ }
+ ],
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}
diff --git a/ios-marker-app-custom-style/iOSCustomStyle/Assets.xcassets/AppIcon.appiconset/Contents.json b/ios-marker-app-custom-style/iOSCustomStyle/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 0000000..2305880
--- /dev/null
+++ b/ios-marker-app-custom-style/iOSCustomStyle/Assets.xcassets/AppIcon.appiconset/Contents.json
@@ -0,0 +1,35 @@
+{
+ "images" : [
+ {
+ "idiom" : "universal",
+ "platform" : "ios",
+ "size" : "1024x1024"
+ },
+ {
+ "appearances" : [
+ {
+ "appearance" : "luminosity",
+ "value" : "dark"
+ }
+ ],
+ "idiom" : "universal",
+ "platform" : "ios",
+ "size" : "1024x1024"
+ },
+ {
+ "appearances" : [
+ {
+ "appearance" : "luminosity",
+ "value" : "tinted"
+ }
+ ],
+ "idiom" : "universal",
+ "platform" : "ios",
+ "size" : "1024x1024"
+ }
+ ],
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}
diff --git a/ios-marker-app-custom-style/iOSCustomStyle/Assets.xcassets/Contents.json b/ios-marker-app-custom-style/iOSCustomStyle/Assets.xcassets/Contents.json
new file mode 100644
index 0000000..73c0059
--- /dev/null
+++ b/ios-marker-app-custom-style/iOSCustomStyle/Assets.xcassets/Contents.json
@@ -0,0 +1,6 @@
+{
+ "info" : {
+ "author" : "xcode",
+ "version" : 1
+ }
+}
diff --git a/ios-marker-app-custom-style/iOSCustomStyle/ContentView.swift b/ios-marker-app-custom-style/iOSCustomStyle/ContentView.swift
new file mode 100644
index 0000000..59bbf3d
--- /dev/null
+++ b/ios-marker-app-custom-style/iOSCustomStyle/ContentView.swift
@@ -0,0 +1,101 @@
+import SwiftUI
+import MapboxMaps
+
+struct ContentView: View {
+
+ @State var presentSheet = false
+ @State var locationName = "Test Name"
+ @State var locationAddress = "Test Address"
+ @State var locationPhoneNumber = "Test Phone Number"
+ @State var locationRating = "Test Rating"
+
+ var body: some View {
+ // Center coordinates for Boston, MA
+ let center = CLLocationCoordinate2D(
+ latitude: 42.34622,
+ longitude: -71.09290
+ )
+ ZStack(alignment: .bottom) {
+ Map(initialViewport: .camera(center: center, zoom: 7, bearing: 0, pitch: 0))
+ {
+ TapInteraction(.layer("dog-groomers-boston-marker")) { feature, context in
+ grabPOIData(properties: feature.properties)
+ return true // stops propagation
+ }
+
+ TapInteraction(.layer("dog-groomers-3o4sdb")) { feature, context in
+ grabPOIData(properties: feature.properties)
+ return true // stops propagation
+ }
+ }
+ .mapStyle(MapStyle(uri: StyleURI(rawValue: "mapbox://styles/examples/cm37hh1nx017n01qk2hngebzt")!))
+ .ornamentOptions(OrnamentOptions(scaleBar: ScaleBarViewOptions(visibility: .hidden),compass: CompassViewOptions(visibility: .hidden)))
+ .ignoresSafeArea()
+
+ // Adds UI element with call to action and app title text
+ VStack(alignment: .trailing) {
+ HStack {
+ Image(systemName: "pawprint.fill")
+ .foregroundColor(.blue)
+ .padding([.leading, .top, .bottom], 6)
+ Text("Pet Spa Finder")
+ .font(.headline)
+ .foregroundColor(.black)
+ .cornerRadius(3)
+ .padding([.top, .trailing, .bottom], 6)
+ }
+ .padding(12)
+ .background(
+ RoundedRectangle(cornerRadius: 3)
+ .fill(Color.white)
+ )
+
+ Text("Click a marker for more information.")
+ .font(.caption)
+ .foregroundColor(.black)
+ .padding(8)
+ .frame(width: UIScreen.main.bounds.width * 0.45)
+ .background(
+ RoundedRectangle(cornerRadius: 3)
+ .fill(Color.white)
+ )
+ .cornerRadius(2)
+ }.offset(x:100, y: -650)
+
+ }
+ .ignoresSafeArea(edges: [.bottom, .leading]).sheet(isPresented: $presentSheet) {
+ VStack(alignment: .leading) {
+ Text(locationName)
+ .font(.system(size: 30))
+ .presentationDetents([.height(200)])
+ Text(locationRating)
+ .safeAreaInset(edge: .leading) { Image(systemName: "star") }
+ .presentationDetents([.height(200)])
+ Text(locationAddress)
+ .safeAreaInset(edge: .leading) { Image(systemName: "house") }
+ .presentationDetents([.height(200)])
+ Text(locationPhoneNumber)
+ .safeAreaInset(edge: .leading) { Image(systemName: "phone") }
+ .presentationDetents([.height(200)])
+ }
+ }
+}
+
+ func grabPOIData(properties: JSONObject)
+ {
+ locationName = (properties["storeName"]!!).rawValue as! String;
+
+ let streetAddress = (properties["address"]!!).rawValue as! String;
+ let city = (properties["city"]!!).rawValue as! String;
+ let postalCode = (properties["postalCode"]!!).rawValue as! String;
+
+ locationAddress = streetAddress + ", " + city + ", " + postalCode;
+ locationPhoneNumber = (properties["phoneFormatted"]!!).rawValue as! String;
+ let rating = (properties["rating"]!!).rawValue as! Double;
+ locationRating = "\(rating)"
+
+ presentSheet = true;
+ }
+
+
+}
diff --git a/ios-marker-app-custom-style/iOSCustomStyle/Info.plist b/ios-marker-app-custom-style/iOSCustomStyle/Info.plist
new file mode 100644
index 0000000..331db3f
--- /dev/null
+++ b/ios-marker-app-custom-style/iOSCustomStyle/Info.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ MBXAccessToken
+ YOUR_MAPBOX_ACCESS_TOKEN
+
+
diff --git a/ios-marker-app-custom-style/iOSCustomStyle/iOSCustomStyleApp.swift b/ios-marker-app-custom-style/iOSCustomStyle/iOSCustomStyleApp.swift
new file mode 100644
index 0000000..efe172c
--- /dev/null
+++ b/ios-marker-app-custom-style/iOSCustomStyle/iOSCustomStyleApp.swift
@@ -0,0 +1,17 @@
+//
+// iOSCustomStyleApp.swift
+// iOSCustomStyle
+//
+// Created by Emily Ryan on 12/4/25.
+//
+
+import SwiftUI
+
+@main
+struct iOSCustomStyleApp: App {
+ var body: some Scene {
+ WindowGroup {
+ ContentView()
+ }
+ }
+}
diff --git a/ios-marker-app-custom-style/iOSCustomStyleTests/iOSCustomStyleTests.swift b/ios-marker-app-custom-style/iOSCustomStyleTests/iOSCustomStyleTests.swift
new file mode 100644
index 0000000..fac7817
--- /dev/null
+++ b/ios-marker-app-custom-style/iOSCustomStyleTests/iOSCustomStyleTests.swift
@@ -0,0 +1,17 @@
+//
+// iOSCustomStyleTests.swift
+// iOSCustomStyleTests
+//
+// Created by Emily Ryan on 12/4/25.
+//
+
+import Testing
+@testable import iOSCustomStyle
+
+struct iOSCustomStyleTests {
+
+ @Test func example() async throws {
+ // Write your test here and use APIs like `#expect(...)` to check expected conditions.
+ }
+
+}
diff --git a/ios-marker-app-custom-style/iOSCustomStyleUITests/iOSCustomStyleUITests.swift b/ios-marker-app-custom-style/iOSCustomStyleUITests/iOSCustomStyleUITests.swift
new file mode 100644
index 0000000..112a745
--- /dev/null
+++ b/ios-marker-app-custom-style/iOSCustomStyleUITests/iOSCustomStyleUITests.swift
@@ -0,0 +1,41 @@
+//
+// iOSCustomStyleUITests.swift
+// iOSCustomStyleUITests
+//
+// Created by Emily Ryan on 12/4/25.
+//
+
+import XCTest
+
+final class iOSCustomStyleUITests: XCTestCase {
+
+ override func setUpWithError() throws {
+ // Put setup code here. This method is called before the invocation of each test method in the class.
+
+ // In UI tests it is usually best to stop immediately when a failure occurs.
+ continueAfterFailure = false
+
+ // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this.
+ }
+
+ override func tearDownWithError() throws {
+ // Put teardown code here. This method is called after the invocation of each test method in the class.
+ }
+
+ @MainActor
+ func testExample() throws {
+ // UI tests must launch the application that they test.
+ let app = XCUIApplication()
+ app.launch()
+
+ // Use XCTAssert and related functions to verify your tests produce the correct results.
+ }
+
+ @MainActor
+ func testLaunchPerformance() throws {
+ // This measures how long it takes to launch your application.
+ measure(metrics: [XCTApplicationLaunchMetric()]) {
+ XCUIApplication().launch()
+ }
+ }
+}
diff --git a/ios-marker-app-custom-style/iOSCustomStyleUITests/iOSCustomStyleUITestsLaunchTests.swift b/ios-marker-app-custom-style/iOSCustomStyleUITests/iOSCustomStyleUITestsLaunchTests.swift
new file mode 100644
index 0000000..1c9fdec
--- /dev/null
+++ b/ios-marker-app-custom-style/iOSCustomStyleUITests/iOSCustomStyleUITestsLaunchTests.swift
@@ -0,0 +1,33 @@
+//
+// iOSCustomStyleUITestsLaunchTests.swift
+// iOSCustomStyleUITests
+//
+// Created by Emily Ryan on 12/4/25.
+//
+
+import XCTest
+
+final class iOSCustomStyleUITestsLaunchTests: XCTestCase {
+
+ override class var runsForEachTargetApplicationUIConfiguration: Bool {
+ true
+ }
+
+ override func setUpWithError() throws {
+ continueAfterFailure = false
+ }
+
+ @MainActor
+ func testLaunch() throws {
+ let app = XCUIApplication()
+ app.launch()
+
+ // Insert steps here to perform after app launch but before taking a screenshot,
+ // such as logging into a test account or navigating somewhere in the app
+
+ let attachment = XCTAttachment(screenshot: app.screenshot())
+ attachment.name = "Launch Screen"
+ attachment.lifetime = .keepAlways
+ add(attachment)
+ }
+}