On an Edge 1000 running 9.2 and minSdkVersion="2.1.1". Using the following code snippet, I expect to get the name of the next course point in the datafield I'm developing:
if(info has :nameOfNextPoint){
if(info.nameOfNextPoint != null){
mValue = info.nameOfNextPoint;
} else {
mValue = "None";
}
}
else {
mValue = "No Field";
}
}
What I'm getting is the name of the next street I'm supposed to turn on (I assume computed by the Garmin, since it is not in the file). While interesting, I'm using BestBikeSplit to add the power data in and now I can't get it to display as an alert or in the datafield I'm trying to write, but it does display on the route sheet screen. It seems either the Edge is changing the names, or the route points are not coming from my list. Any insights / workarounds?