SIU-CS / Finite_Loop-production

CS 435 - Parking spot finder application for Android.
Apache License 2.0
0 stars 3 forks source link

App keeps crashing #65

Closed Andimoh closed 7 years ago

Andimoh commented 7 years ago

I'm trying to have the map marker load up from firebase but the App keeps crashing while trying to load and no Error! #15 screen shot 2017-03-28 at 7 40 03 pm screen shot 2017-03-28 at 7 39 16 pm

Andimoh commented 7 years ago

@jake32321

jake32321 commented 7 years ago

Ah. for the reference you need to make sure that it goes to the right child. I.E. to get the reference for that you need to make the reference to be something like database().getReference().child('lots')... but to the level where you can get the item lattitude and longitude. Right now you are referencing the root node of the database. The issue can be seen at the top of the output with the null ref since lattitude is nonexistent on that node.

jake32321 commented 7 years ago

also, the input will be a string that needs to be converted to a double.

jake32321 commented 7 years ago

@Andimoh

Andimoh commented 7 years ago

OK Thanks!