-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Map Part 1 (Created a html page and created a map using the Google Map API) + Map Part 2 + Map Part 3 #13
Open
yen-tt
wants to merge
35
commits into
master
Choose a base branch
from
Map
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+90,096
−154
Open
Changes from 3 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
1c12c97
added recipient as a component to the message system
yen-tt 4d6ed3b
completed the last few steps of the Direct Messages feature
yen-tt edecce0
new branch
pranathil d00b9d2
new servlet
pranathil a03c6ee
datastore
pranathil 20b9d7d
servlet logic
pranathil f7fe57f
Add basic Java templates for gitignore
nsallembiencodeu ad6de47
Merge branch 'gitignore' into PranathiDevelopment
nsallembiencodeu 0b19389
gitignore fix
nsallembiencodeu 736fb0f
final
pranathil 93f633c
final
pranathil e28203f
fixed travis errors
pranathil 154cf9d
changed helper name
pranathil cf81cc4
removed target files
pranathil 710c3b5
fixed errors
pranathil c6eecba
complete guided project MAP part 1
yen-tt c7b59ed
Merge branch 'master' into YenDevelopment
nsallembiencodeu fc1ff3c
Merge pull request #3 from yen1027/YenDevelopment
nsallembiencodeu b7e11ea
Merge branch 'master' into PranathiDevelopment
nsallembiencodeu 09b732f
Merge pull request #11 from yen1027/PranathiDevelopment
nsallembiencodeu 0c98ec4
Deleting files from .gitignore
nsallembiencodeu 3c5f592
fix build merge issue and apply linter
nsallembiencodeu 151a420
Fixing more build errors
nsallembiencodeu b3c4276
Merge pull request #14 from yen1027/remove_ignored
nsallembiencodeu 35b5fb7
added a csv file containing data that will be fetch be UfoDataServlet…
yen-tt 7c71702
minor change to the csv file
yen-tt 007a331
complete guided project MAP part 1
yen-tt 0b95df9
added a csv file containing data that will be fetch be UfoDataServlet…
yen-tt 921a12e
minor change to the csv file
yen-tt 9ea2901
Merge branch 'Map' of https://github.com/yen1027/CodeBusters into Map
yen-tt 6246ca4
fixed ufo csv file! Map part 2 is completed
yen-tt e7b0d8c
started on Map part 3, added functions to user-map html to allow user…
yen-tt bcb0d4b
style changes
yen-tt fc2d8d3
Completed Maps Part 3: User can create markers and and info, in which…
yen-tt ac0501e
fixed format violations on the code
yen-tt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/target/ | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
eclipse.preferences.version=1 | ||
encoding//src/main/java=UTF-8 | ||
encoding/<project>=UTF-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 | ||
org.eclipse.jdt.core.compiler.compliance=1.8 | ||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning | ||
org.eclipse.jdt.core.compiler.source=1.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
activeProfiles= | ||
eclipse.preferences.version=1 | ||
resolveWorkspaceProjects=true | ||
version=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Map Project</title> | ||
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAWJW6lENPXp_hwUrYirFP4kdUQixTCtwo"></script> | ||
<script> | ||
let map; | ||
function createMap(){ | ||
|
||
//creates a map | ||
map = new google.maps.Map(document.getElementById('map'), { | ||
center: {lat: 37.422, lng: -122.084}, | ||
zoom: 16 | ||
}); | ||
|
||
//add marker | ||
const trexMarker = new google.maps.Marker({ | ||
position: {lat: 37.421903, lng: -122.084674}, | ||
map: map, | ||
title: 'Stan the T-Rex' | ||
}); | ||
|
||
//add popup description | ||
var trexInfoWindow = new google.maps.InfoWindow({ | ||
content: 'This is Stan, the T-Rex statue.' | ||
}); | ||
|
||
trexMarker.addListener('click', function() { | ||
trexInfoWindow.open(map, trexMarker); | ||
}); | ||
} | ||
</script> | ||
<style> | ||
#map{ | ||
width: 500px; | ||
height: 500px; | ||
border: thin solid black; | ||
} | ||
</style> | ||
</head> | ||
<body onload="createMap();"> | ||
<h1>Map Project</h1> | ||
<div id="map"></div> | ||
</body> | ||
</html> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you try to rebase this branch on top of the new master? This will make sure you have all the latest goodies in terms of .gitignore, etc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh yeah! will do