84 lines
2.4 KiB
Dart
84 lines
2.4 KiB
Dart
import 'package:google_maps_flutter/google_maps_flutter.dart';
|
|
|
|
class UniversitiesPolygons {
|
|
// AUC polygon points
|
|
static const List<List<LatLng>> universityPolygons = [
|
|
// AUC Polygon
|
|
[
|
|
LatLng(30.013431, 31.502572),
|
|
LatLng(30.018469, 31.497478),
|
|
LatLng(30.023158, 31.495870),
|
|
LatLng(30.025084, 31.496781),
|
|
LatLng(30.018701, 31.511393),
|
|
LatLng(30.015312, 31.508310),
|
|
],
|
|
// Example polygon for University 'German University in Cairo (GUC)'
|
|
[
|
|
LatLng(29.984554, 31.437829),
|
|
LatLng(29.990363, 31.438390),
|
|
LatLng(29.990560, 31.445643),
|
|
LatLng(29.984436, 31.445825),
|
|
],
|
|
//Future University in Egypt (FUE)
|
|
[
|
|
LatLng(30.025794, 31.490946),
|
|
LatLng(30.028341, 31.491014),
|
|
LatLng(30.028341, 31.492586),
|
|
LatLng(30.025844, 31.492491),
|
|
],
|
|
//'British University in Egypt (BUE)'
|
|
[
|
|
LatLng(30.117423, 31.605834),
|
|
LatLng(30.118224, 31.605543),
|
|
LatLng(30.118649, 31.607361),
|
|
LatLng(30.118932, 31.608033),
|
|
LatLng(30.119592, 31.612159),
|
|
LatLng(30.119372, 31.612958),
|
|
LatLng(30.120017, 31.617102),
|
|
LatLng(30.119435, 31.617193),
|
|
],
|
|
//Misr International University (MIU)
|
|
[
|
|
LatLng(30.166498, 31.491663),
|
|
LatLng(30.171956, 31.491060),
|
|
LatLng(30.172212, 31.495754),
|
|
LatLng(30.167112, 31.496108),
|
|
],
|
|
// Canadian International College (CIC)
|
|
[
|
|
LatLng(30.034312, 31.428963),
|
|
LatLng(30.035661, 31.429037),
|
|
LatLng(30.036074, 31.430522),
|
|
LatLng(30.036017, 31.431146),
|
|
LatLng(30.034580, 31.431117),
|
|
],
|
|
// October 6 University (O6U)
|
|
[
|
|
LatLng(29.974102, 30.946934),
|
|
LatLng(29.976620, 30.944925),
|
|
LatLng(29.979848, 30.949832),
|
|
LatLng(29.977372, 30.951950),
|
|
],
|
|
[
|
|
LatLng(30.029312, 31.210046),
|
|
LatLng(30.027124, 31.201393),
|
|
LatLng(30.014523, 31.205087),
|
|
LatLng(30.015416, 31.212218),
|
|
LatLng(30.027325, 31.210661),
|
|
],
|
|
// Add polygons for 8 more universities...
|
|
];
|
|
|
|
static const List<String> universityNames = [
|
|
"American University in Cairo (AUC)",
|
|
'German University in Cairo (GUC)',
|
|
'Future University in Egypt (FUE)',
|
|
'British University in Egypt (BUE)',
|
|
'Misr International University (MIU)',
|
|
'Canadian International College (CIC)',
|
|
'October 6 University (O6U)',
|
|
"Cairo University",
|
|
// Add names for 8 more universities...
|
|
];
|
|
}
|