Alexander Veligurov

Results 14 comments of Alexander Veligurov

I ended up creating this implicit Read and Write: ``` implicit val pointWrites = new Writes[Point] { def writes(point: Point) = Json.obj( "latitude" -> point.getX, "longitude" -> point.getY ) }...

@arronhunt @jskidd3 This is certainly @2x, @3x problem. Make sure that your @2x and @3x images are 2 and 3 times corresponding to the original image size. eg: original: 25x25,...

@jskidd3 they should be lowercase. `@3x` https://facebook.github.io/react-native/docs/images.html

@arronhunt your production build is ok, because this is the actual pin size.

@jskidd3 glad you sorted it @arronhunt if you keep experiencing this after adding x2 and x3, let us know.

@arronhunt Looks like an expo issue. I marked photos x1, x2 and x3 respectively. See expo: ![photo4906750632896079896](https://user-images.githubusercontent.com/4231544/36164181-636fe1ea-10ca-11e8-98b3-2a72f26d2d19.jpg) See native build: (Master in this repo https://github.com/alvelig/react-native-maps-example) ![photo4906750632896079897](https://user-images.githubusercontent.com/4231544/36164904-9ad863e4-10cc-11e8-80a6-a87fadf8c43e.jpg)

Please try https://github.com/alvelig/react-native-maps-example and comment

Great. Thanks a lot! May history track user who made the change? It would be great to have an example of that.

The mixin idea also seems the best for me. Both ways are clear. I'll try it myself, but will be looking forward to a tutorial, as this approach is new...